Factory Girl is a Ruby on Rails gem that allows to predefine prototypes of models to be used in testing.
8
votes
2answers
7k 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 => ...
0
votes
0answers
670 views
Cucumber, Pickle, Factory-Girl “Given a” returning “Undefined step:”
For posterity (see comments below) I had "Give a User exists" when it should have been "Given a user exists" (case)
I am getting an undefined step for "Given a User exists" when running $ cucumber
...
22
votes
1answer
4k 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 ...
1
vote
1answer
54 views
Renamed columns, rspec seems to be seeing old columns
I'm using rspec and factory_girl.
i renamed columns in the db, yet my factories are returning the old columns.
How can I reset this cache?
0
votes
1answer
501 views
Using rspec and factory_girl, where to store hard coded values that need to be shared?
I am using rspec and factory_girl in a rails 3 app.
I am setting up my factories in /spec/factories right now, and just curious where I should place attribute-hashes or hard-coded ID's that other ...
1
vote
1answer
343 views
factory_girl - has_many relatonships and refreshing the parent model
I keep running into the same issue, and I would be surprised if I am the only person experiencing this and expect someone has a better way of doing this. When I create a Factory which has a dependent ...
1
vote
1answer
932 views
Is it possible to use FactoryGirl without Rails?
I'm creating a GUI application which interacts with database so I need fixture management for my RSpec tests. I use sqlite database and am going to write a class which will manipulate data with ...
28
votes
3answers
6k 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 ...
0
votes
1answer
84 views
Factorygirl can't create factories in the db for javascript steps
I have this rspec scenario:
background do
Factory.create(:project, :name => "NAME", :url_name => "url name")
end
scenario "A not logged in user with no cookies goes to the root url and ...
2
votes
1answer
364 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 ...
10
votes
7answers
2k 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, ...
0
votes
4answers
280 views
Rspec failure when it should be passing
When I run bundle exec rspec spec/ I have one of my tests fail that should be passing. Here's the error:
Failure/Error: @user = Factory(:user)
NoMethodError:
undefined method `Factory' ...
9
votes
5answers
4k views
FactoryGirl: attributes_for not giving me associated attributes
I have a Code model factory like this:
Factory.define :code do |f|
f.value "code"
f.association :code_type
f.association(:codeable, :factory => :portfolio)
end
But when I test my ...
1
vote
1answer
333 views
How can fixtures be replaced with factories using rails3-generators?
I'm trying to replace fixture generation with factories using rails3-generators:
https://github.com/indirect/rails3-generators#readme
The gem is included in my Gemfile and has been installed:
# ...
1
vote
1answer
592 views
How do I write class level methods in rails models so they don't get executed during rake tasks?
I have a roles model in a rails app that I have written a few quick shortcut class methods in. These methods are essentially just convenience wrappers for some commonly used finders. But this presents ...
3
votes
3answers
918 views
switching from fixtures to Factory Girl
Rails 3.0.3....
I'm just starting out with Factory Girl, having had little success with the standard fixtures approach. I've commented out fixtures :all from the test/test_helper.rb file and have ...
1
vote
1answer
542 views
How do I test this rails 3 controller function with rspec 2 using factory_girl?
Using Rails 3, Rspec 2, factory_girl_rails gem, I have a controller with the following code:
def remove_player
@player = User.find(params[:id])
current_team.users.delete(@player)
...
5
votes
2answers
3k views
FactoryGirl + RSpec + Rails 3 'undefined method <attribute>='
I'm fairly new to rails and TDD (as will no doubt be obvious from my post) and am having a hard time wrapping my brain around Rspec and FactoryGirl.
I'm using Rails 3, rspec and factory girl:
gem ...
0
votes
2answers
1k views
Using Factory Girl with Cucumber and Capybara, how do I populate forms?
I have this:
Scenario: Login
Given a user exists with first_name: "Fred"
When I am on the home page
And I fill in "email" with the user: "Fred"
And I fill in "password" with the user: "Fred"
...
2
votes
2answers
2k views
Trying to load my seed data before cucumber tests in Rails3 / Capybara with factory_girl
I have some seed data (for price ranges) that is the same in prod, dev, test and doesn't change. I need that data in my test db to run my cuke tests.
I am load my seed data into test DB before the ...
1
vote
1answer
706 views
rspec with change method returning wrong number of arguments 0 for 1
I'm trying this test.
model
def self.tweet(url)
Twitter.configure do |config|
config.consumer_key = APP_CONFIG['twitter_consumer_key']
config.consumer_secret = ...
1
vote
1answer
95 views
Strange error with a simple test
this is what I'm testing:
model
scope :user_pending, lambda { |user|
where("jobs.available = 0 AND jobs.user_id = ?", user.id) }
test
it "should have the scope" do
Job.should ...
1
vote
2answers
633 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|
...
6
votes
2answers
3k 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 ...
2
votes
2answers
1k views
How to Populate Lookup tables in Testing (Rails)
I am using Cucumber, Rspec, and Factory Girl for the testing of my Rails Application. But I have several lookup tables that contain mostly static data. So I'm trying to figure out the best way to ...
3
votes
2answers
4k views
Setting up factory girl with cucumber and rails 3
I'm trying to get factory girl setup with rails 3, but I'm getting this error when I rake cucumber:
james@james-laptop:~/rails-projs/simple-beach-63$ rake cucumber:wip
(in ...
1
vote
2answers
575 views
References inside factory_girl factories don't work properly
Factory.define :person do |p|
p.first_name { User.generate_activation_code(6) }
p.last_name { User.generate_activation_code(6) }
p.username { "p#{first_name}_#{last_name}" }
p.email { ...
1
vote
2answers
2k views
RailsTutorial 10.1 giving persistent “undefined local variable or method 'authenticate'” errors
I am very new to programming, and so far I've had no big issues with Rails Tutorial.
But when I hit 10.1, I started getting the same errors over and over again and I'm not sure why. I have looked up ...
0
votes
1answer
311 views
Ruby on Rails Test Database Not Committing New Records
Is there a way to use Factory Girl to commit new changes to the test database in Ruby on Rails?
I have the following factory:
Factory.define :shipping_info do |si|
si.name "Foo Bar"
...
0
votes
1answer
387 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 ...
2
votes
1answer
4k views
How to properly use Factory_girl and has_many 'through' models
I'm having a little difficulty groking the call back model and methodology in Factory Girl. Using this post http://robots.thoughtbot.com/post/254496652/aint-no-calla-back-girl I started giving it a ...
0
votes
1answer
2k views
rails3 - uninitialized constant in factory definition
factory_girl is not recognizing a model name that I've defined, and which I need to reference because I need a subclass. This worked in rails 2 but I'm migrating to rails 3.
Factory definition:
...
0
votes
1answer
681 views
Factory Girl Newbie: Calling (not creating) an existing factory as an association
I have some factorygirl factories that involve associations to other factories. For example:
FactoryGirl.define do
factory :user do |f|
f.sequence(:email) { |n| "user#{n}@example.com" }
...
6
votes
3answers
1k 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 ...
3
votes
4answers
865 views
Validation problem with Autotest and Factory Girl
i have a problem with Autotest. In my user model are the username & email address unique. When i start Autotest everything works fine. In the secound round, from autotest, i have a
Validation ...
3
votes
3answers
3k views
rails 3 tutorial : rspec + factory_girl_rails problem
i've been following the Rails tutorial (http://railstutorial.org/chapters/beginning , Rails 3 version), and i've stopped at 11th chapter when using Factory Girl and Rspec, I have a test that isn't ...
4
votes
3answers
3k views
Getting factory_girl to work in Rails3
For the life of me, I can't get factory_girl to work in Rails3. I created a brand new application. My Gemfile:
gem "rspec"
gem "rspec-rails"
gem "factory_girl_rails"
The generators in ...
8
votes
2answers
4k 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
4answers
6k views
Rails: Factory Girl failing to sequence
Just getting started with factory girl, and I've come across a problem with sequencing: Specifically, it doesn't increment. I've tried changing the database type, updating from factory_girl 1.3.2 to ...
3
votes
1answer
173 views
What is factorygirl used for? setting up objects for you?
Is factorygirl's purpose in a testing environment to setup the objects used in the test?
3
votes
2answers
2k views
Dependent Attributes in Factory Girl
Seems like I should have been able to find an obvious answer to this problem after a few hours of Googling and testing.
I want to be able to set caredate.user_id => provider.user_id within the ...
0
votes
1answer
452 views
RSpec & DataMapper: How to stub the finder method correctly
The environment is Sinatra, Nokogiri, RSpec, FactoryGirl and DataMapper.
The problem is with DataMapper's serializer. I don't know how to stub appropriatetely with it.
The problematic code:
...
2
votes
2answers
952 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 ...
6
votes
2answers
783 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
4answers
2k views
RSpec can't find Factorys from Factorygirl
i will use RSpec with Factory girl in my Rails3 Project. I have installed factory girl but it don't find the factorys i have this error
Failure/Error: Factory.build(:user).should_be valid
No such ...
3
votes
1answer
436 views
Is there a configuration setting to globally set the :default_strategy to :build for all factory_girl Factories?
I know you can override the default strategy for creating a Factory object like so:
Factory.define :person, :default_strategy => :build do
# stuff
end
Factory.define :person, :default_strategy ...
0
votes
1answer
317 views
association with a model that doesn't have primary key id
I am on Rails 2, which the newest version of factory_girl to use is 1.2.4
I have 2 tables:
ethnicities(code, description)
people(id, name, ..., *ethnicity_code*, ...)
people.ethnicity_code is the ...
1
vote
1answer
1k views
Getting <LoadError: no such file to load — factory_girl> with Rails 3 and factory_girl_rails
I know I'm missing something fundamental, but I'm at a lost. After looking at the factory_girl site, I've installed the factory_girl_rails gem in Gemfile:
group :development, :test do
gem ...
0
votes
1answer
413 views
Failure of functional test for 'create' using should_redirect_to
I have a problem trying to use 'shoulda' with 'factory_girl' for creating a functional test for 'create' in a Rails application. I created a simple project, scaffolded user, added 'shoulda' ...
0
votes
1answer
400 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 ...