我有以下型号
class User < ActiveRecord::Base
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
attr_accessible :email, :password, :password_confirmation, :remember_me, :company_id
end
class Company < ActiveRecord::Base
attr_accessible :email, :name
end
#test/factories/companies.rb
FactoryGirl.define do
factory :company do
name "sample company"
email "sample@company.com"
end
end
#test/factories/users.rb
FactoryGirl.define do
factory :user do |u|
u.email 'sameera@sample.com'
u.password 'welcome'
u.password_confirmation 'welcome'
u.association :company, :factory => :company
end
end
#spec/models/user_spec.rb
require 'spec_helper'
describe User do
describe "Validations" do
it "should validate the email" do
user = FactoryGirl.build(:user, :email => nil)
user.should have(1).error_on(:email)
end
end
end
但我收到了这个错误,有警卫(即使在重新启动警卫之后)
15:47:35 - INFO - Running: spec/models/user_spec.rb
Running tests with args ["--drb", "-f", "progress", "-r", "/home/sameera/.rvm/gems/ruby-1.9.2-p290/gems/guard-rspec-2.4.0/lib/guard/rspec/formatter.rb", "-f", "Guard::RSpec::Formatter", "--failure-exit-code", "2", "spec/models/user_spec.rb"]...
F
Failures:
1) User Validations should validate the email
Failure/Error: user = FactoryGirl.build(:user, :email => nil)
NoMethodError:
undefined method `company=' for #<User:0x00000004dcee08>
# ./spec/models/user_spec.rb:6:in `block (3 levels) in <top (required)>'
Finished in 0.16308 seconds
1 example, 1 failure
Failed examples:
rspec ./spec/models/user_spec.rb:5 # User Validations should validate the email
Randomized with seed 26095
Done.