Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why do I get an undefined method 'have' error when running Rspec?

I recently upgraded to Rails 4 and everything works fine except for my Rspec tests.

require 'spec_helper'

describe Invoice do

  before :each do
    @user = FactoryGirl.create(:activated_user)
    person = FactoryGirl.create(:person, :user => @user, :company => nil)
    @project = FactoryGirl.create(:project, :user => @user, :person_ids => [person.id], :invoice_recipient_id => person.id)
  end

  it "has a valid factory" do
    expect(FactoryGirl.build(:invoice, :project => @project, :user => @user)).to be_valid
  end

  it "is invalid without a number" do
    expect(FactoryGirl.build(:invoice, :project => @project, :user => @user, :number => nil)).to have(1).errors_on(:number)
  end

end

When running these tests I get this error:

Failure/Error: expect(FactoryGirl.build(:invoice, :project => @project, :user => @user, :number => nil)).to have(1).errors_on(:number)
NoMethodError:
undefined method `have' for #<RSpec::ExampleGroups::Invoice_2:0x009ge29360d910>
# ./spec/models/invoice_spec.rb:16:in `block (2 levels) in <top (required)>'

Can anybody tell me what I am missing here?

I googled it already but nothing came up. The have method is actually fairly standard in Rspec and I can't see why it shouldn't work.

Thanks for any pointers.

like image 497
Tintin81 Avatar asked Dec 05 '13 17:12

Tintin81


3 Answers

The have family of matchers was deprecated in RSpec 2.99 and has been moved to a separate rspec-collection_matchers gem as of RSpec 3.0. This is discussed in http://myronmars.to/n/dev-blog/2013/11/rspec-2-99-and-3-0-betas-have-been-released, which also gives the suggested approach to migrating to 3.0. Specifically, it recommends installing/using RSpec 2.99 in order to see the deprecation messages associated with items that were removed/moved in 3.0.

like image 62
Peter Alfvin Avatar answered Nov 08 '22 12:11

Peter Alfvin


OK, got it.

I had the wrong version number in my Gemfile.

Before:

gem 'rspec-rails', '~> 3.0.0.beta'

After:

gem 'rspec-rails'
like image 1
Tintin81 Avatar answered Nov 08 '22 14:11

Tintin81


In the latest versions of rspec "have" being deprecated, but you still can use it via rspec-collection_matchers gem.

# Gemfile
...
gem 'rspec-collection_matchers', group: :test
...

# spec/spec_helper.rb
...
require 'rspec/collection_matchers'
....
like image 5
Purkhalo Alex Avatar answered Nov 08 '22 13:11

Purkhalo Alex