Kuruluma yanlış yoldan gidersem birisi bana söyleyebilir mi?
Has_many.through ilişkilendirmeleri olan aşağıdaki modellere sahibim:
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
Rails 3.1.rc4, FactoryGirl 2.0.2, factory_girl_rails 1.1.0 ve rspec kullanıyorum. :listing
Fabrika için temel rspec rspec akıl sağlığı kontrolüm :
it "creates a valid listing from factory" do
Factory(:listing).should be_valid
end
İşte Fabrika (: listeleme)
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
Ve :feature
fabrikalar benzer ayarlanmıştır.
Eğer association :features
hat iptal edilmiştir, daha sonra tüm testleri geçmektedir.
Ne zaman
association :features, :factory => :feature
hata mesajı
undefined method 'each' for #<Feature>
bana mantıklı geldiğini düşündüğüm çünkü listing.features
bir dizi döndürüyor. Ben de değiştirdim
association :features, [:factory => :feature]
ve şimdi aldığım hata şu: ArgumentError: Not registered: features
Bu şekilde fabrika nesneleri üretmek mantıklı değil mi, yoksa neyi kaçırıyorum? Tüm girdiler için çok teşekkürler!