README.md in coach-0.5.1 vs README.md in coach-0.5.2

- old
+ new

@@ -179,9 +179,13 @@ Each middleware is encouraged to rely on data passed through the `provide`/`require` syntax exclusively, except in stateful operations (such as database queries). By sticking to this rule, testing becomes as simple as mocking a `context` hash. +Coach comes with some RSpec matchers to help simplify your testing, however they aren't +required by default. You'll need to run `require 'coach/rspec'`, we recommend putting this +in your `spec/spec_helper.rb` or `spec/rails_helper.rb` file. + ```ruby require 'spec_helper' describe "/whoami" do let(:user) { FactoryGirl.create(:user, name: 'Clark Kent', token: 'Kryptonite') }