Tagged Questions
1
vote
1answer
49 views
FactoryGirl override attribute of associated object
This is probably silly simple but I can't find an example anywhere.
I have two factories:
FactoryGirl.define do
factory :profile do
user
title "director"
bio "I am very good at ...
0
votes
0answers
58 views
How to write tests to validate uniqueness and presence of has_many :through entries
I'm still a bit unexperienced in writing tests and are hoping you could point me into the right direction with the following problem:
I have the following 3 model classes with a has_many :through ...
0
votes
1answer
51 views
rails3 + rspec2 + factorygirl association
I have the following models
class User < ActiveRecord::Base
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
attr_accessible ...
0
votes
2answers
153 views
rails 3 - FactoryGirl create associated records
I am trying to create some test data to fill my tables with so that i can test functionality on my site.
The tables in question are: songs, song_arrangements, and song_arrangement_files. The are ...
4
votes
3answers
153 views
How could I create factories for a cyclic association in FactoryGirl?
I've been having trouble trying to create factories for some objects and associations that I have defined in my project. I have a cyclic kind of association, where an object is associates with two ...
2
votes
1answer
223 views
factory girl association with a children class, show nomethoderror: undefined method
file 1 . user.rb
factory :user do
name "test"
end
factory :admin_user, :parent => user do
role "admin"
end
file 2. manager.rb
factory :manager do
association :admin_user
description ...
1
vote
0answers
158 views
rspec factory girl associations
I am receiving the following error when testing a listing of books, that belong_to authors.
Failure/Error: visit books_path
ActionView::Template::Error:
undefined method `name' for ...
0
votes
1answer
467 views
factory-girl association has_many through with existing objects
maybe im not phrasing the question right.
I have a data structure that looks like this
A Facility has many users through a Facility role
now in factory gril I know i can create an association like ...
0
votes
0answers
219 views
Rails3Tutorial Ch11: Factory Girl fails to write to Microposts array in testing, but everything seems to work during development
I've been working through Hartl's Ruby on Rails 3 Tutorial (http://railstutorial.org/chapters/beginning , Rails 3 version), and I'm stuck on a few failing tests in Chapter 11 on Microposts. When ...
4
votes
1answer
1k views
Factory Girl create association with existing object
I am new to FactoryGirl and I am trying the following simple scenario?
factory :female, :class => Gender do
code 'Female'
end
factory :male, :class => Gender do
code 'Male'
end
factory ...
2
votes
1answer
90 views
How to properly use factories having multiple associations to the same model?
I am using Ruby on Rails 3.2.2, FactoryGirl 3.1.0 and FactoryGirlRails 3.1.0. I have a model that has two association to another model:
class Article < ActiveRecord::Base
belongs_to a_users, ...
0
votes
0answers
35 views
Default model in :has_many collection
I have a user model and a user_profile model. A user :has_many user_profiles, which :belong_to the user. However, a user should also :have_one default user_profile which should always :belong_to the ...
1
vote
0answers
143 views
FactoryGirl: generate a bundle of associated records
Having the next factories:
FactoryGirl.define do
factory :card do
bundle
number 4567
end
factory :bundle do
start_number 12345
cards_amount 10
after_create { |bundle| ...
0
votes
1answer
310 views
factory_girl_rails: factory built model instance's has_many association not populated when an associated child is created
I'm using factory_girl_rails instead of fixtures. Here are my models:
class User < ActiveRecord::Base
has_many :tasks
belongs_to :project
end
class Task < ActiveRecord::Base
belongs_to ...
1
vote
2answers
593 views
factory_girl_rails has_many association includes only one from a collection of many
I'm using factory_girl_rails instead of fixtures. Here are my models:
class User < ActiveRecord::Base
has_many :tasks
end
class Task < ActiveRecord::Base
belongs_to :user
end
Here are my ...
2
votes
1answer
351 views
How to define factories for a has_many through association
I am new to testing and factory_girl, and I want to create factories using factory_girl for a has_many through association.
I have seen a lot of articles on the web, but couldn't see the best way to ...
1
vote
0answers
367 views
Rails3: Unable to update attribute without first reloading record when creating parent dynamically
Summary
Where City has many Locations (HABTM association), create a child record like this:
a = Location.create(:name=>'Site 1', :city => City.create(:name=>'A City'))
Issue: a.city_id ...
56
votes
7answers
21k views
How to create has_and_belongs_to_many associations in Factory girl
Given the following
class User < ActiveRecord::Base
has_and_belongs_to_many :companies
end
class Company < ActiveRecord::Base
has_and_belongs_to_many :users
end
how do you define ...