Czy ktoś może mi powiedzieć, czy po prostu źle konfiguruję?
Mam następujące modele, które mają skojarzenia has_many.through:
class Listing < ActiveRecord::Base
attr_accessible ...
has_many :listing_features
has_many :features, :through => :listing_features
validates_presence_of ...
...
end
class Feature < ActiveRecord::Base
attr_accessible ...
validates_presence_of ...
validates_uniqueness_of ...
has_many :listing_features
has_many :listings, :through => :listing_features
end
class ListingFeature < ActiveRecord::Base
attr_accessible :feature_id, :listing_id
belongs_to :feature
belongs_to :listing
end
Używam Rails 3.1.rc4, FactoryGirl 2.0.2, factory_girl_rails 1.1.0 i rspec. Oto mój podstawowy test poprawności rspec rspec dla :listing
fabryki:
it "creates a valid listing from factory" do
Factory(:listing).should be_valid
end
Oto fabryka (: lista)
FactoryGirl.define do
factory :listing do
headline 'headline'
home_desc 'this is the home description'
association :user, :factory => :user
association :layout, :factory => :layout
association :features, :factory => :feature
end
end
:listing_feature
I :feature
fabryki są w podobny setup.
Jeśli association :features
wiersz jest wykomentowany, wszystkie moje testy przechodzą.
Kiedy to jest
association :features, :factory => :feature
komunikat o błędzie jest taki,
undefined method 'each' for #<Feature>
który uważałem za sensowny, ponieważ listing.features
zwraca tablicę. Więc zmieniłem to na
association :features, [:factory => :feature]
a błąd, który teraz otrzymuję, brzmi: ArgumentError: Not registered: features
Czy generowanie obiektów fabrycznych w ten sposób po prostu nie jest rozsądne, czy też czego mi brakuje? Bardzo dziękuję za wszelkie uwagi!