Tagged Questions
1
vote
0answers
77 views
How to call factory girl with the same model name but belongs to different rails 3.2.12 engine?
There is misc_definition model in both projectx and customerx rails 3.2.12 engine. Projectx and customerx are needed in the same rails app. Now there is a problem about how to call the factory girl ...
0
votes
0answers
81 views
FactoryGirl and seed data clash
This is a very general problem I'm trying to address. I have found a 'best bad solution' and I would like some refreshing views on how to handle the case since I'm far from satisfied from my solution.
...
3
votes
1answer
110 views
FactoryGirl complex association with multiple models
I'm trying to figure out how to write a factory that belongs to 2 different models that each should have the same parent model. Here's the contrived sample code:
class User < ActiveRecord::Base
...
0
votes
2answers
206 views
Rails 3 - Factory girl and sequence for belongs_to table
I have 2 models - User and Teacher. Teacher belongs_to User, User has Teacher.
So, i use Factory girl gem:
Factory.define :user do |user|
user.user_login "Another User"
user.user_role "admin"
...
1
vote
1answer
1k views
Ruby Factory Girl Creating Multiple Objects
I am a newcomer to using Factory Girl and I feel I may have some misunderstandings about how it is suppose to work and how I am supposed to use it. Here is a snippet of the problem code.
...
2
votes
1answer
240 views
Rails 3.1, FactoryGirl or Factory?
I am trying to build tests using specs, and I am confused about using FactoryGirl or Factory,
I have FactoryGirl 2.3.2 installed, as I have gem "factory_girl_rails", "~> 1.2" in GemFile
The ...
0
votes
1answer
52 views
Monitoring process interference Factory's instance initialization
In my project, the user will have many items, which have an onshelf_at attribute default to DateTime.now at its creation.
# item.rb
class Item < ActiveRecord::Base
before_create ...
2
votes
1answer
659 views
Using factory_girl within a rake task - getting uninitialized constant
I'm trying to use Factory Girl in a rake task like this:
require 'factory_girl'
require File.expand_path("spec/factories.rb")
namespace :users do
desc "Create sample users for use in development" ...
0
votes
1answer
265 views
MongoDB object / association oddity
so i had the following associations...
Product
embeds_many :pressings, :class_name => "ProductPressing"
ProductPressing
embedded_in :product
embeds_many :variations, :class_name => ...
0
votes
2answers
241 views
empty? not working in Factory Girl
I have a problem where after_build don't seem to trigger after after the actual build. As the example below illustrates, the after_build shouldn't build a second tail when called through Factory.build ...
2
votes
2answers
967 views
Is there a way in factory_girl to get attributes_for and create for the same instance element?
If I want to create and instance using "create" build strategy and then want to use "attributes_for" build strategy for verification, is it possible to do? And if I use sequences in the factory? Is it ...
17
votes
3answers
6k views
Populating an association with children in factory_girl
I have a model Foo that has_many 'Bar'. I have a factory_girl factory for each of these objects. The factory for Bar has an association to Foo; it will instantiate a Foo when it creates the Bar.
I'd ...
8
votes
2answers
2k views
Using fixtures with factory_girl
When building the following factory:
Factory.define :user do |f|
f.sequence(:name) { |n| "foo#{n}" }
f.resume_type_id { ResumeType.first.id }
end
ResumeType.first returns nil and I get an ...
6
votes
2answers
1k views
Accessing factory_girl factories in *other* factories
I'm using the factory_girl plugin in my rails application. For each model, I have a corresponding ruby file containing the factory data e.g.
Factory.define :valid_thing, :class => Thing do |t|
...
1
vote
2answers
2k views
DRYer tests with associations in factory_girl
Can anyone suggest a better way to make a factory use a pre-built model
instance for its association? For example, so that it would be possible
below to define a child of the Message factory so that a ...
0
votes
1answer
648 views
How do you override :set_initial_state from AASM when testing with Factory Girl factories?
Update
Answered below. In case the linked site disappears, you can use mocha to stub the initial state and prevent overwriting as in ...
require 'mocha'
class OrderTest < ActiveSupport::TestCase
...
10
votes
5answers
2k views
Does a framework like Factory Girl exist for Java?
Factory Girl is a handy framework in rails for easily creating instances of models for testing.
From the Factory Girl home page:
factory_girl allows you to quickly define prototypes for each of ...
2
votes
1answer
2k views
Problem with non activerecord associations in factory girl
I just started to use factory girl to replace fixtures when I am testing. I am working on a twitter client and I am trying to use factory girl to create the twitter objects for testing. When I ...