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.
expect(Invoice.new).to have...
(use your class instead of Factory - do you have the same error?). Then try to check version and maybe update gem rspec-rails. Another idea: do you use spork, zeus or smth like this? Maybe smth is wrong inspec_helper.rb
– Abebirails g rspec:install
again to update myspec_helper.rb
file. Then triedexpect(Invoice.new).to have(1).errors_on(:number)
. But it gives me the exact same error as before. – Postglacial