$ rspec --init
$ guard init
- (Building matchers](http://www.relishapp.com/rspec/rspec-expectations/v/3-5/docs/built-in-matchers)
Lets build it together 👯
- abstract repetitive code in your specs
- improve readability of your own business rules
- shoulda matchers as inspiration - https://github.com/thoughtbot/shoulda-matchers
- have_json_pathh - https://semaphoreci.com/community/tutorials/how-to-use-custom-rspec-matchers-to-specify-behaviour
expect(something).to change_my_model(...)
.and remove_other_thing(...)
.and enqueue_job(...)
.and schedule_an_email(...)
.and create_another_crazy_side_effect