everydayrails/everydayrails-rspec-2017

Chapter 4 be_true made the test fail

KvApril opened this issue · 2 comments

It seems that be_true was deprecated in rspec3

it "does somthing with multiple users" do
      user1 = FactoryGirl.create(:user)
      user2 = FactoryGirl.create(:user)
      expect(true).to be_true # or expect(true).to be_truthy  
 end

Good catch, I'll fix this in the next release. Thanks.

Released!