Tagged Questions
The factory-girl tag has no wiki summary.
23
votes
5answers
9k 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 ...
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 ...
7
votes
1answer
746 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
1answer
2k views
Spork and cache_classes problem with rspec, factory_girl and datamapper
I've got a problem with Spork test server.
If I set config.cache_classes = false in config/environments/test.rb then specs start to rasie errors.
Failure/Error: task = Factory(:something, :foo ...
4
votes
6answers
611 views
How to mock and stub active record before_create callback with factory_girl
I have an ActiveRecord Model, PricePackage. That has a before_create call back. This call back uses a 3rd party API to make a remote connection. I am using factory girl and would like to stub out this ...
3
votes
2answers
170 views
How to include a module in a factory_girl factory?
I'm trying to reuse a helper method in all my factories, however I cannot get it to work. Here's my setup:
Helper module (in spec/support/test_helpers.rb)
module Tests
module Helpers
# not ...
3
votes
1answer
145 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
2answers
202 views
RSpec's failing because it thinks ActiveRecord objects aren't equal
Very simple spec...
@post.user.should == @user
Spec fails even though both objects are identical in every way except their object_id. ActiveRecord objects should equal (==) if their id's are the ...
3
votes
8answers
843 views
Factory_girl and Factory_girl_rails conflict error
The following is the error message running rspec spec:
/factory_girl-2.1.0/lib/factory_girl/registry.rb:38:in `add_as': Already defined: user (FactoryGirl::DuplicateDefinitionError)
There are both ...
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
485 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) { ...
2
votes
1answer
219 views
Rails: Avoiding duplication errors in Factory Girl…am I doing it wrong?
Suppose I have a model 'user', which has a uniqueness constraint on the 'email' field
If I call Factory(:user) once all is well, but if I call it a second time it'll fail with an 'entry already ...
2
votes
1answer
421 views
How to setup factory in FactoryGirl with has_many association
Can someone tell me if I'm just going about the setup the wrong way?
I have the following models that have has_many.through associations:
class Listing < ActiveRecord::Base
attr_accessible ...
...
2
votes
1answer
290 views
How to resolve factory_girl wrong number of arguments error
#rspec test code
@room = FactoryGirl.build(:room)
#factory definition
factory :room do
length {10}
width {20}
end
#code implementation
class Room
attr_accessor :length, :width
def ...
2
votes
1answer
169 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 ...
2
votes
1answer
255 views
Functional tests running very slow when using Factory_Girl
In our Rails project, we decided to eliminate fixtures and use Factory_Girl for our tests instead. We program using TDD so we have plenty of unit and functional tests (Test::Unit). The application has ...
2
votes
1answer
646 views
Creating instances with unique attributes using Factory Girl
I have a constraint and a validation placed on the guid field so that each is unique. The problem is, with the factory definition that I have below, I can create only one user instance, as additional ...
1
vote
1answer
200 views
How do I mock a devise objects association return values?
I have an Employee model, Client model, and an Office model. Devise is controlling the authentication logic on the Employee. I have multiple controllers which are subclassing a base controller which ...
1
vote
1answer
186 views
Factory Girl & Rails: can we turn off the database transactions that wrap each test?
I've got this issue with database locking when I'm testing some threading features I've got in my application--the database locks on one thread and then all the other threads deadlock on that. As ...
1
vote
2answers
359 views
How do I create a factory for models that have a has_one/belongs_to relationship with validations that are usually overcome by nested attributes?
I have an Account model that has_one User model, and a User model that belongs_to Account model. I think that the basic code required for demonstration is:
class Account < ActiveRecord::Base
...
1
vote
2answers
486 views
factory_girl's Cucumber steps and optional associations
I have the following models:
class Person < ActiveRecord::Base
belongs_to :family
end
class Family < ActiveRecord::Base
end
And the following factories:
Factory.define :person do |p|
...
1
vote
1answer
370 views
specifying a random association object in factory_girl definition
Is there a way in factory_girl to specify a random instance that an association should point to? For example, I have a Like object which belongs_to one User and one SocialUnit. I want the factory ...
0
votes
0answers
21 views
Rake Aborted Error when pushing to Heroku (factory_girl)
I am getting this error when trying to push to Heroku:
heroku run rake db:migrate
Running rake db:migrate attached to terminal... up, run.1
rake aborted!
no such file to load -- factory_girl
Here ...
0
votes
1answer
61 views
factory_girl and sprintf
first of all, i am quite new to Ruby, although i have a strong background in Java (not helping here :). I created my first Rails application and i am using FactoryGirl. I came across something weird ...
0
votes
1answer
109 views
Exception when trying to execute rspec test w/ devise, factory-girl
I am taking back a project in rails 3.0.3 that make uses of devise and localized_routes. The project doesn't have any tests and so I've wrote a very simple test with rspec and factory girl.
when ...
0
votes
1answer
91 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
32 views
Factory Girl common root for an object graph
invitation ------> event
\ \
\/ \/
responder(person) ---->account
\ /\
\ /
group-------------
...
0
votes
1answer
138 views
passing params to post :create request ruby-on-rails-3.1, Rspec, factory-girl
I am trying to write a controller spec for creating a purchase with a purchase line item. The purchase gets created just fine with all the attributes I give it but the purchase line item is not ...
0
votes
0answers
100 views
Factory Girl Value not Read
I'm trying to use Factory Girl Rails (Rails 3.0 and Unit::Test) to create a customer, but for some reason, I can't get the user_name filled. A customer can have a site - to determine the site, the ...
0
votes
0answers
65 views
testing BCrypt Authentication with RSpec & Factory Girl
I have built my own authentication for a personal project using Bcrypt and Rails 3, I am now trying to figure out how to test it, I use Rspec & FactoryGirl for testing however, I dont really know ...
0
votes
3answers
423 views
rails 3.1.rc6 + factorygirl+ devise + spec2 => undefined method `Factory' for #<RSpec::Core::ExampleGroup::
my gem file looks like
source 'http://rubygems.org'
gem 'rails', '3.1.0.rc6'
gem 'sqlite3'
gem 'devise'
gem 'will_paginate'
gem 'therubyracer'
group :assets do
gem 'sass-rails', " ~> 3.1.0.rc"
...
0
votes
2answers
271 views
Find or create record through factory_girl association
I have a User model that belongs to a Group. Group must have unique name attribute. User factory and group factory are defined as:
Factory.define :user do |f|
f.association :group, :factory => ...
0
votes
2answers
452 views
Factory girl association question
I write in my rspecs test
which add into my rubric some units.
So i have two models => Rubric and Units.
And Rubrics has many units.
It looks like
@rubric.units.push Factory :text_unit
@rubric.save
...
0
votes
1answer
329 views
how to use devise current_user inside factory_girl factories
I want to use current_user (of devise) inside the factories I create using factory_girl.
My environment contains: Ruby 1.8.7 / Rails 2.3.5 / Devise / Cucumber / Pickle / Factory Girl
I've the ...
0
votes
1answer
527 views
How come Factory Girl isn't sequencing unique attributes?
My controller spec fails because Factory Girl seems to be creating non-unique Users even though I sequence the User attributes that need to be unique.
The Errors
1) TopicsController POST #create ...
0
votes
1answer
2k views
Testing the User Model with Rspec, Devise, and Factory Girl
I think there is a problem with my user factory being built. I'm getting an error saying that the password cannot be blank, but it's clearly set in my factories.rb. Does anyone see anything that I may ...
0
votes
2answers
415 views
Problem with Factory_girl, association and after_initialize
I have a Family class so defined:
class Family < ActiveRecord::Base
after_initialize :initialize_family
belongs_to :user
validates :user,
:presence => true
validates :name,
...
0
votes
1answer
539 views
Rspec controller test with factory girl
I suspect I just being very dumb with this and missing something obvious. But I fairly new to rspec and factory girl and cannot get this simple test to work.
Basically I have set up a model called ...
0
votes
1answer
276 views
how do I set up factory_girl in my test_helper.rb file to use with shoulda?
I have the following:
1 ENV["RAILS_ENV"] = "test"
2 require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
3 require 'test_help'
4 require 'shoulda'
5 require ...
0
votes
1answer
209 views
Factory Girl to_json issues
When I call to_json on my Factory Girl object, I get a nil.[] error.
I'm using DataMapper on Rails 3, and when I call to_json on a real DataMapper object, it works just fine. Any idea why the Factory ...
0
votes
2answers
346 views
issue with factory_girl , rpsec 2.0 and rails 3.0 => can't get has_one relation working nicely together!
I'm running rails 3.0, rspec 2.0 and factory_girl. Here is the simplified scenario I'm working with: a user can subscribe to only one plan at a time
# user.rb
class User < ActiveRecord::Base
...
0
votes
1answer
503 views
stubbing factory_girl + rspec methods and attributes
I'm using factory_girl + rspec on Rails 2-3-stable:
Test:
context "test" do
before(:each) do
@profile.stub!(:lastfm_enabled?).and_return(true)
end
it "should be able to ...
0
votes
1answer
1k views
factory_girl has_many :through with validations
I have the following models:
class Activity < ActiveRecord::Base
has_many :clientships, :dependent => :destroy
has_many :clients, :through => :clientships
end
class Clientship < ...
0
votes
3answers
663 views
Where are the factory_girl records?
I'm trying to perform an integration test via Watir and RSpec. So, I created a test file within /integration and wrote a test, which adds a test user into a base via factory_girl.
The problem is — I ...