Factory Girl is a Ruby on Rails gem that allows to predefine prototypes of models to be used in testing.

learn more… | top users | synonyms

2
votes
0answers
213 views

factory girl multiple nested attributes

I have models class Rating < ActiveRecord::Base attr_accessible :type_id, :value belongs_to :review class Review < ActiveRecord::Base attr_accessible :name, :description, :user_id, ...
2
votes
0answers
149 views

A FactoryGirl factory for a many-to-many self-referenced model

I've got a self-referenced user model: class User < ActiveRecord::Base has_and_belongs_to_many :following, :class_name => "User", ...
2
votes
0answers
187 views

How to do composite primary keys with FactoryGirl Gem

How to do composite keys using FactoryGirl with below relationship Portal(uuid, name) listing(uuid, portal_uuid, name) location(uuid, portal_uuid) in here listing and location has composite ...
2
votes
0answers
374 views

FactoryGirl belongs_to with has_many associations

I have three classes: class User has_and_belongs_to_many :accounts end class Account has_and_belongs_to_many :users end class Idea belongs_to :user belongs_to :account end And these ...
1
vote
0answers
49 views

'Errno::ENOENT no such file/directory' intermittently with FactoryGirl & RSpec/Rails

Getting a bizarre error on my RSpec tests, intermittently, on different examples. They all pass 99.999% of the time (and did up until an hour or so ago) leading me to believe there's something crazy ...
1
vote
0answers
28 views

factory_girl - how to create an object within the definition of another object

I have adopted a Rails app and am trying to put some model tests in; I am using FactoryGirl for the first time so this might be a beginner question. There is a model called object_connection that ...
1
vote
0answers
91 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 ...
1
vote
0answers
44 views

factory girl create error

company_factory.rb Factory.define :company, :class => Company do |c| c.company_name 'companyname' c.address 'companyadress' c.phone '012323232' c.company_prize_ratio 10 ...
1
vote
0answers
375 views

Rails 4, Rspec, FactoryGirl

I am having trouble having an id column in a database that is not rails automagic. Basically the situation is the users table has to be between 5000 and 7000 and there are other external stipulations ...
1
vote
0answers
56 views

FactoryGirl seems not to fill out fields

I use Single Table Inheritance, where the model producer is derived from the model user, which in turn is derived from contact. Contact and User have some validation as: validates :name, ...
1
vote
0answers
131 views

How to test a nested form with RSpec and FactoryGirl?

In my Rails project I have a User that can have many Projects which in turn can have many Invoices. Each Invoice can have many nested Items. class Invoice < ActiveRecord::Base attr_accessible ...
1
vote
0answers
26 views

Rails / Factory Girl: Mutual presence validations

I have an association between two rails models, 'Project' and 'Step', such that a project has many steps. A step requires a project_id, and a project requires at least one step to be valid...I'm ...
1
vote
0answers
445 views

undefined method “to_i” on FactoryGirl

After upgrading my rails to 3.11, all my factories are broken. Failure/Error: effective = Factory.build(:effective, :document_type => DocumentType::RG, NoMethodError: undefined method to_i' ...
1
vote
0answers
125 views

FactoryGirl build attributes with sequence returns nil

I have a very simple factory with sequence FactoryGirl.define do factory :lecture do sequence(:name) {|n| "lecture #{n}" } sequence(:slug) {|n| "lecture-#{n}" } end end When I build it ...
1
vote
0answers
87 views

FactoryGirl: Build all factories of a class or in a file?

If I have a file full of factories that looks like this: FactoryGirl.define do factory :city do name "My City" state "MI" latitude 50 longitude -80 association :country end ...
1
vote
0answers
263 views

Why is database_cleaner breaking my tests (minitest / capybara / factory girl)?

I'm trying to get database_cleaner working with my test suite and I can't find anything online about this error: ERROR Couldn't find User with id=1 The tests run fine until I add database_cleaner. ...
1
vote
0answers
67 views

Devise: init user password without using Devise#password in tests

I am using FactoryGirl for the fixtures of my test environment, and Devise for the authentication. Until now we have been relying on the password= method that Devise provides us to initialize the user ...
1
vote
0answers
186 views

FactoryGirl + Shoulda NoMethodError: undefined method `featured='

I have the following test failing 2) Dvd when is featured Failure/Error: subject { Factory(:featured) } NoMethodError: undefined method `featured=' for #<Dvd:0x007f9cdb50e400> # ...
1
vote
0answers
164 views

Rails 3.2.8 + FactoryGirl + RABL: Differences on how datetime are returned

I have the following factory: FactoryGirl.define do factory :location do |f| f.descrizione { Faker::Company.name } f.indirizzo { 'Yellow submarine lane, 1'} f.citta { 'Nowhereland' } ...
1
vote
0answers
148 views

Mongoid3 + FactoryGirl Incompatible?

I just upgrade to Mongoid3 and Im getting a TON of these errors: TypeError: can't convert String into Integer The issue is always when Im trying to build a model that belongs_to another model ...
1
vote
0answers
166 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 ...
1
vote
0answers
233 views

FactoryGirl callbacks with multiple has_many relationships

I have three models: Course, Level and Subject. A course has many levels and subjects. How do I create a course object in factory girl using callbacks without getting stuck in an infinite loop? ...
1
vote
0answers
492 views

Factory Girl create objects but objects not found in database

I'm using cucumber with Factory Girl and here is the mysterious problem, in my cucumber steps : fact = Factory.create(:fact, :factable_type => "type_#{i}", ...
1
vote
0answers
136 views

How to add many child objects for a HABTM self-reference in Factory Girl Rails/Cucumber?

In the Project model: has_and_belongs_to_many :subprojects, :join_table => "project_projects" In a Cucumber feature file: Given the following projects exist: | name | type | | first | foo ...
1
vote
0answers
151 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| ...
1
vote
0answers
584 views

Factory_Girl rake issue

I'm creating a new Rails 3.1 application using Cucumber, Devise, and Factory_Girl. I installed successfully Devise and Cucumber. I then created the spec/factories.rb file that contains the following: ...
1
vote
0answers
227 views

No such factory: user (ArgumentError) but… it is defined. and using find_definitions() just finds duplicates… =\

So, I recently moved to bundler, and I'm having issues getting everything working again. when I run bundle exec rake test:units, I get this error: ...
1
vote
0answers
215 views

extending factory_girl

I found good solution, with factory_girl extension here: Using factory_girl in Rails with associations that have unique constraints. Getting duplicate errors. And now, how can I extend all my ...
1
vote
0answers
1k views

Factory Girl, Mongoid, and Embedded Documents

I am setting up my first app with Mongoid and Devise. I am trying to Factory a user in my test with this factory: Factory.define(:user) do |f| f.email "bob1234@example.com" f.password "testing" ...
1
vote
0answers
902 views

Rails 3 Validations - Association Properties, RSpec, and Factory Girl

I'm trying to write a validation class in rails 3 that will check for the presence of at least one associated object that has a particular property value. In my scenario, an Account can have many ...
1
vote
0answers
373 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 ...
1
vote
0answers
340 views

Setting up factory_girl with internal array in rails

I have the following shoulda set up which I would like to use factory_girl to have the fake model available in other specs. So far I have this: context "on POST to parse" do setup do ...
1
vote
0answers
814 views

How do I setup and utilize Shoulda, Factory_Girl, and Cucumber in a Rails 3 application?

I'm able to get my Gemfile how I like it: # Gemfile source "http://gemcutter.org" gem "rails", :git => "git://github.com/rails/rails.git" git "git://github.com/rails/arel.git" git ...
0
votes
0answers
7 views

Factory Girl sequence acting very strangely/causing validation error

I'm trying to use FactoryGirl for some unique names, but I'm running into some difficulties. #spec/models/reservation_spec.rb require 'spec_helper' describe Reservation do before(:all) do ...
0
votes
0answers
18 views

RSpec + FactoryGirl validation

I have some problems with user validation and rspec testing. In my User model I have some validations. validates_presence_of ...
0
votes
0answers
26 views

rspec cannot find factory that is created in test

I have a Factory that creates a mock order. It has a before_create in the factory to create 3 models that are necessary for after_create callbacks when creating an order. The following factory code ...
0
votes
0answers
15 views

A factory association with a name equal to the Table's name, FactoryGirl and RSpec

I have this model: class Buyer < ActiveRecord::Base attr_accessible :buyer_id belongs_to :account, :foreign_key => :buyer_id end And this factory: factory :buyer do association ...
0
votes
0answers
17 views

where do you save custom saved strategies in factory girl?

I am trying to implement the new FactoryGirl custom build strategy from the FactoryGirl getting started guide. I want to use the code they have to be able to output my factories as a JSON file. ...
0
votes
0answers
35 views

Rails 4 and FactoryGirl traits creation

We are migrate rails3 app to Rails4. In FactoryGirl we use this trait: trait :with_student do after_create do |resource| resource.students << FactoryGirl.create(:student) end ...
0
votes
0answers
20 views

correct way of doing has_many:through with factory girl?

Here are my relationships class User < ActiveRecord::Base has_many :user_selected_categories, :dependent => :destroy has_many :categories, :through => :user_selected_categories end ...
0
votes
0answers
36 views

Rails application. Rspec/capybara tests not accessing helper methods

I have a rails application that is a Twitter clone. It has a User model and a Sessions model. I am writing integration tests for user pages and I am generating users using a factory (via FactoryGirl). ...
0
votes
0answers
27 views

Integration test with rspec-rails, capybara, and FactoryGirl not detecting presence of link

The following code is part of an integration test I'm writing to test a login. When I visit the pages myself I can see that everything is working, but I've written the test wrong. I want to know why ...
0
votes
0answers
21 views

Is it possible to use an if statement in a factory (FactoryGirl)?

I've got two traints in my factory, and I want one of them to be included when I create the object, without it defaulting to one (so randomly pick the trait). Here's what I'm doing: ...
0
votes
0answers
29 views

Why can't I populate a login form with a FactoryGirl.create(:user)?

I'm trying to test a login form with FactoryGirl, Rspec, and Capybara. I can test the signup form by running FactoryGirl.build(:user), but I can't login a user that is created by Factory Girl with ...
0
votes
0answers
29 views

Testing the controller having load_and_authorize_resource using RSpec

I have a controller like this, class SitesController < ApplicationController load_and_authorize_resource def index @search = Site.search(:include => :parser) do ...
0
votes
0answers
24 views

Creating a bunch of records with FactoryGirl how to?

I'm working on a reservation application for hotels. The problem I am running into is that I'm trying to test my API and the amount of stuff that needs to be created for each test is getting out of ...
0
votes
0answers
20 views

is it possible to pass variable to FactoryGirl.create to either do a time-consuming activity or not

I have a set of items that are part of an inventory. We use the same calls to generate seed data and for testing purposes. For seeding, we want to set up assets for items and for most tests, we don't ...
0
votes
0answers
37 views

Rails: Reusing Same Record Factory Girl with One Model

I have a Rails model named Games which is related to a Player model using two fields: player_1_id and player_2_id. Each player is associated with a game_type. I'd like to use the same game_type ...
0
votes
0answers
34 views

FactoryGirl and validations on embeds_many in Mongoid

I have a complex model relationship hierarchy setup, Here are the relevant parts ( Channel and ChannelTagWeight model) as: class Channel include Mongoid::Document embeds_many ...
0
votes
0answers
35 views

post(path, parameters = nil, headers = nil) not working in Rails Integration test

I am writing a Rails Integration test case with Capybara, I am testing a basic functionality of posting some values at a particular path, But it isn't working, I am testing with debugger on to that ...

1 2 3 4 5