Tagged Questions

Factorygirl is a replacement for fixtures, supplying data for use in tests.

learn more… | top users | synonyms

21
votes
3answers
4k views

Machinist vs FactoryGirl - pros and cons

I'm working with factory_girl, but looking at the machinist gem. Could you tell me please - what are the pros and cons of migrating to machinist? Have you compared those libs?
17
votes
4answers
2k views

How Do I Use Factory Girl To Generate A Paperclip Attachment?

I have model Person that has many Images, where images has a Paperclip attachment field called data, an abbreviated version displayed below: class Person has_many :images ... end class Image ...
15
votes
4answers
5k views

has_many while respecting build strategy in factory_girl

Situation # Models class User < ActiveRecord::Base has_many :items end class Items < ActiveRecord::Base belongs_to :user validates_presence_of :user_id end # Factories ...
14
votes
4answers
3k views

Why isn't factory_girl operating transactionally for me? - rows remain in database after tests

I'm trying to use factory_girl to create a "user" factory (with RSpec) however it doesn't seem to be operating transactionally and is apparently failing because of remnant data from previous tests in ...
13
votes
13answers
8k views

Setup Factory Girl with Test::Unit and Shoulda

I'm trying to set up Factory Girl with Test::Unit and Shoulda in Ruby on Rails. I have installed the gem, created my factory file under the test/factories directory, and created my spec file under the ...
11
votes
3answers
2k 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
3answers
1k views

Factory Girl - what's the purpose?

This is less technical and more curiousity, but this has been killing me. What's the purpose of Factory Girl in my rspec tests when I could simply use before(:each) blocks? I'm very green with ...
8
votes
2answers
1k views

Factory Girl: Automatically assigning parent objects

I'm just getting into Factory Girl and I am running into a difficulty that I'm sure should be much easier. I just couldn't twist the documentation into a working example. Assume I have the following ...
8
votes
7answers
4k views

Using factory_girl in Rails with associations that have unique constraints. Getting duplicate errors

I'm working with a Rails 2.2 project working to update it. I'm replacing existing fixtures with factories (using factory_girl) and have had some issues. The problem is with models that represent ...
7
votes
1answer
735 views

Dependent factories in Factory Girl

I have 2 factories. Beta_user and Beta_invite. Basically before a Beta_user can validly save I have to create an entry of Beta_invite. Unfortunately these models don't have clean associations, but ...
7
votes
7answers
2k views

factory_girl + rspec doesn't seem to roll back changes after each example

Similar to the problem described here: http://rpheath.com/posts/411-how-to-use-factory-girl-with-rspec in Short (shorten'd code): spec_helper: config.use_transactional_fixtures = true ...
7
votes
4answers
3k views

Clearing the test database between unit and functional tests in Rails (factory_girl)

Recently I switched from fixtures to factory_girl to test my Ruby on Rails application. If I run rake test:units, to run the tests in my /units directory, they all run perfectly. The same is true if I ...
7
votes
4answers
3k views

How can I define multiple associated objects using Factory Girl?

The Factory Girl docs offer this syntax for creating (I guess) parent-child associations... Factory.define :post do |p| p.author {|a| a.association(:user) } end A post belongs to a User ...
6
votes
1answer
79 views

Get two associations within a Factory to share another association

I've got these 5 models: Guardian, Student, Relationship, RelationshipType and School. Between them, I've got these associations class Guardian < ActiveRecord::Base belongs_to :school has_many ...
6
votes
1answer
1k views

RSpec failure: could not find table after migration…?

I have a naked rails 3 app with one model, generated using rails g model User. I've added a factory (using factory_girl_rails): Factory.define :user do |f| f.email "test@test.com" f.password ...
6
votes
3answers
530 views

AssociationTypeMismatch and FactoryGirl

This has been causing some frustration recently... It seems that using Factories in my cucumber tests, in some situations causes AssociationTypeMismatch errors such as: MyModel(#65776650) expected, ...
6
votes
3answers
2k views

Devise/Cucumber - Adding a step which confirm a user exists

I'm new to cucumber and I find following snippets to test the Devise login feature. However it seems one more step missing, and I didn't find any solution: Given /^that a confirmed user exists$/ do ...
6
votes
3answers
587 views

Factory Girl: How to associate a record to another record without creating a new record?

I'm using Factory Girl/Rspec2/Rails 3. In factories.rb, I have: Factory.define :user do |user| user.name 'Some guy' user.email 'some_guy@somewhere.org' user.password 'password' ...
6
votes
1answer
2k views

when does factory girl create objects in db?

i am trying to simulate a session using factory girl/shoulda (it worked with fixtures but i am having problems with using factories). i have following factories (user login and email both have ...
6
votes
3answers
1k views

Extra arguments for Factory Girl

I need to pass extra arguments to factory girl to be used in a callback. Something like this (but more complex really): Factory.define :blog do |blog| blog.name "Blah" blog.after_create do ...
6
votes
1answer
1k views

ActiveSupport::TestCase vs Test::Unit::TestCase when unit testing rails

I recently noticed my test database is not being cleaned up after my tests run if my tests subclass Test::Unit::TestCase. If my tests subclass ActiveSupport::TestCase, everything is cleaned up ...
6
votes
2answers
2k views

factory_girl association validations

I have an issue where I have a parent model Foo, which both has_many :bars and has_many :bazes. Finally, I also have a join model BarBaz which belongs_to :bar and belongs_to :baz. I want to validate ...
5
votes
4answers
800 views

How can I use Factory Girl in db/seeds?

it's possible to do this?, how you can do?
5
votes
1answer
423 views

Faker is producing duplicate data when used in factory_girl

I'm trying to populate some fake data into a factory using the Faker gem: Factory.define :user do |user| user.first_name Faker::Name::first_name user.last_name Faker::Name::last_name ...
5
votes
2answers
845 views

How can I add my seed data to my test database using rake db:seed?

I'm using Factory Girl to populate my seed data and adding it to the db in seed.rb. I'm then running my tests using Cucumber. I have a price table that contains seed data that I want in all my ...
5
votes
2answers
711 views

Accessing child attributes from parent Factory Girl factories

I'm implementing Factory Girl as a replacement for fixtures in my Rails app. I have several tables that I'm trying to represent using associations. However, to throw a kink into the loop, beyond ...
5
votes
2answers
1k 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 ...
5
votes
2answers
603 views

Silencing Factory Girl logging

Just to clear the air, I am not some cruel factory master trying to silence working ladies. I am having a very annoying problem where when using Thoughtbot's factory girl in my specs, every time ...
5
votes
4answers
607 views

Shoulda + FactoryGirl: Can I make my tests faster?

I'm looking for a way to speed up my Shoulda + FactoryGirl tests. The model I'm trying to test (StudentExam) has associations to other models. These associated objects must exist before I can create ...
4
votes
1answer
63 views

I want to change the location of my factories, how can I make Rails know the new location when generating?

I'm using rails 3.2.0.rc1 and factory_girl_rails I want the location of my factories to be RAILS_ROOT/factories instead of RAILS_ROOT/specs/factories When I use the Rails generators, I know it ...
4
votes
3answers
300 views

What's the difference between mock, stub, and factory girl?

I'm pretty new to rspec and the whole TDD methodology. Can someone please explain the difference between mock and stub. When do we use them and when do we use Factory Girl to create objects in test ...
4
votes
3answers
575 views

Factory Girl / Capybara deleting records from database mid-test?

Working with RSpec & Capybara, I'm getting an interesting test failure mode which goes away with a few subtle rearrangements of lines in the test case...stuff that shouldn't matter. I'm ...
4
votes
3answers
704 views

“Could not find a valid mapping for #<User …>” only on second and successive tests

I'm trying to write a request test that asserts that the proper links appear on the application layout depending in whether a user is logged in or out. FWIW, I'm using Devise for the authentication ...
4
votes
2answers
435 views

Is there a good alternative to factory_girl?

It doesn't really seem like factory_girl receives much attention these days. Is there a better alternative? I really like FG, but I need to know that they'll keep working on it. Particularly the slow ...
4
votes
1answer
291 views

Testing dynamic initial states with FactoryGirl and StateMachine

I'm having some problems testing StateMachines with Factory Girl. it looks like it's down to the way Factory Girl initializes the objects. Am I missing something, or is this not as easy as it should ...
4
votes
2answers
2k views

Cannot get factory_girl running under rails 3.0.5,unexpected tCONSTANT

This is my Gemfile config: group :development, :test do gem 'rspec-rails' gem 'factory_girl', '~>2.0.0.beta1' gem 'factory_girl_rails', :git => ...
4
votes
2answers
501 views

Factory Girl Newbie: How to create new record only if doesn't already exist

Is there a simple way in factory girl to create a new factory only if one doesn't already exist? If there isn't a simple way, what's the most concise means to ensure only one factory is created for ...
4
votes
2answers
1k views

How to use Cucumber and Factory Girl together?

I'm trying to configure FactoryGirl to work with my Cucumber tests. I added the following lines in env.rb require 'factory_girl' Dir.glob(File.join(File.dirname(__FILE__), ...
4
votes
0answers
393 views

Singleton factories in factory_girl/machinist?

Is there some configuration in a factory of factory girl/machinist that forces it to create objects with the same factory name just once during test case and return the same instance all the time? I ...
4
votes
2answers
872 views

Factory Girl sequence fails under autospec

I have this Factory: Factory.define :email_address do |e| e.sequence(:address) { |n| "factory_#{n}@example.com" } e.validated true end When I run my specs with rake spec, it works fine. When I ...
4
votes
1answer
3k views

I'm using a sequence in Factory Girl to get unique values but I'm getting validation errors

I have a model defined this way class Lga < ActiveRecord::Base validates_uniqueness_of :code validates_presence_of :name end I've defined a factory for Lgas with Factory.sequence(:lga_id) ...
3
votes
1answer
45 views

Rspec + integration testing + activemodel = confused :)

I have following problem, which I don't understand: I have an User model: class User < ActiveRecord::Base ... private def generate_token(column) begin self[column] = ...
3
votes
1answer
116 views

Factory Girl failing Rspec validation tests

I've been trying to get a grasp on writing tests, but having a lot of trouble as the tests never seem to validate the way I want them to. In particular, I've been trying to use Factory Girl as opposed ...
3
votes
1answer
184 views

FactoryGirl and polymorphic associations

The design I have a User model that belongs to a profile through a polymorphic association. The reason I chose this design can be found here. To summarize, there are many users of the application ...
3
votes
1answer
142 views

Factory Girl vs. User.create — what's the difference?

This is an additional note to the question "Factory Girl - what's the purpose?" I'm not sure whether my question is counted as a repetitive one, but I'm simply still not very clear after reading that ...
3
votes
1answer
384 views

Factory Girl + Mongoid embedded documents in fixtues

Lets say you have the following mongoid documents: class User include Mongoid::Document embeds_one :name end class UserName include Mongoid::Document field :first field ...
3
votes
3answers
338 views

Factory Girl Associations with Spork Discrepancy

I'm trying to use Factory Girl for RSpec with Spork. Whenever I run my tests without spork, everything passes, but when I run it with Spork, all the tests that try to create an instance of a factory ...
3
votes
2answers
922 views

Rails 3.1, Factory girl bug

Fixed. There was a bug in Rails. See https://github.com/rails/rails/issues/2333 I have a problem with Factory Girl Rails and Rails 3.1.0.rc5 When I do more than once user = FactoryGirl.create(:user) ...
3
votes
1answer
1k views

Rails 3 + FactoryGirl: NameError: uninitialized constant Factory

ruby-1.9.2-p180 :007 > Factory.define :user do |user| ruby-1.9.2-p180 :008 > user.email "user@example.com" ruby-1.9.2-p180 :009?> user.password ...
3
votes
1answer
482 views

How do I define sequences in FactoryGirlRails?

Previously in Factory girl, we could define sequences like so: # /spec/factories.rb FactoryGirl.define do # this is the sequence in question: sequence(:random_token) { ...

1 2 3 4 5 7