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

0
votes
0answers
13 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
15 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
9 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 ...
2
votes
2answers
98 views

Call FactoryGirl.create for all rspec controller tests?

is there any way you can load some factories for all controller tests? I've got a few of them which are necessary for all controller tests (menu items) and I don't like putting them all in controllers ...
0
votes
2answers
31 views

How to test model's callback method independently?

I had a method in a model: class Article < ActiveRecord::Base def do_something end end I also had a unit test for this method: # spec/models/article_spec.rb describe "#do_something" do ...
0
votes
1answer
10 views

Rspec test describing listing items on index failing

Rspec/TDD beginner. I have a spec that is failing and I don't know why. Everything works in the browser as it should. I am using Kaminari for pagination, which defaults to 25 items per page. spec: ...
2
votes
1answer
40 views

Are *all* specs for an engine expected to live in the dummy Rails app?

I'm using RSpec to test some engine models. My preference would be to test the parts that are independent from the (dummy) app outside of the app. I'd prefer to have non-app tests live at the top ...
0
votes
0answers
14 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 ...
1
vote
1answer
17 views

Rails: Naming Many Variables with FactoryGirl

I'm using FactoryGirl with my Rspec testings and I need to create many users, but I also need to be able to name them so I can reference them. However, when I'm naming them I keep getting an error. ...
0
votes
0answers
15 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
1answer
35 views

Why does FactoryGirl(:build) work with Sorcery, but not FactoryGirl(:create)?

I'm trying to setup tests for my Rails app. I'm using Factory Girl and Rspec with Sorcery for authentication. For some reason this test doesn't pass: describe "User" do it "has a valid the factory" ...
0
votes
1answer
143 views

Applying FactoryGirl trait to Mongoid embedded objects

I am building a Rails 3.2.11 application with Mongoid. I test with Cucumber and create test objects with FactoryGirl. I have embedded objects. I want to be able to use FactoryGirl traits with both ...
1
vote
3answers
711 views

Can FactoryGirl generate factories after your models have been created?

When including the factory_girl_rails gem in your dev and test blocks in Gemfile, rails will generate factories automatically when your models are generated. Is there a way to generate factories ...
0
votes
1answer
31 views

Nested factories

I am trying to define factories for my tests like this: factory :content do id name after(:create) do |content| create(:title, :title_id => content.id) end end # -------------- ...
1
vote
1answer
18 views

Completely remove Rspec, Capybara & Factory-Girl

I've been following the Rails tutorial but decided that ultimately I want to remove Rspec, Capybara and Factory-Girl gems as well as all the generated files, however I have no clue how to do this. I ...
0
votes
1answer
38 views

stub method in FactoryGirl

I have 3 models : Article: has_many photos Photo: belongs_to article belongs_to photoType PhotoType: has_many articles And a factory : FactoryGirl.define do factory :article do title 'The ...
1
vote
2answers
50 views

FactoryGirl with a product model : Rspec tell me that “Trait not registered”

Hi magical community ! Still a newbie with basic question for those who have time ;-) I created a User model and a Product model like this (thanks to @grotori): class User has_many ...
0
votes
1answer
227 views

Dummy data with Factory Girl

How can I set up dummy data with FactoryGirl? Is there a way to set up dummy data with a factory in my integrated development environment?
0
votes
2answers
25 views

Rspec passes on individual spec files but fails on whole directory

I have a model section that belongs to course, teacher, and semester. I have a Factory Girl definition that looks like this: factory :section do course teacher semester ...
1
vote
0answers
22 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
1answer
33 views

Best practice for FactoryGirl with deep association chains?

I am modeling a complex purchasing workflow in Rails that converts Requisitions to Orders. I'm using FactoryGirl to do my testing and all is well, until I try to test the OrderLineItem, which depends ...
3
votes
14answers
4k views

Factory already registered: user (FactoryGirl::DuplicateDefinitionError)

Description of problem: - I've setup factory_girl_rails however whenever I try and load a factory it's trying to load it multiple times. Environment: - rails (3.2.1) - factory_girl (2.5.2) - ...
0
votes
0answers
20 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 ...
2
votes
2answers
324 views

FactoryGirl has_many association with validation

I have a standard has_many relationship (Booking has many Orders) with validation that a Booking does not get saved without at least one Order. I'm trying to replicate this with my FactoryGirl ...
0
votes
1answer
23 views

Setting a child attribute from parent in FactoryGirl

How do you set a dependent attribute that depends on in FactoryGirl? FactoryGirl.define do factory :line_item do quantity 1 price 30 # I want price to come from the product association: ...
0
votes
1answer
42 views

Capybara FactoryGirl Carrierwave cannot attach file

I am trying to test my application with cucumber and capybara. I have the following step definition: Given(/^I fill in the create article form with the valid article data$/) do @article_attributes ...
0
votes
0answers
24 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 ...
5
votes
4answers
3k 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 ...
1
vote
2answers
26 views

factory_girl: Factories fails validation(of time) on create, but in my app, the validation passes

I have created an application with a strict input validation for time.. You have to type in the time with this format: 14:00. This works fine, but when i create Factories with factory-girl, for my ...
0
votes
1answer
22 views

Dynamically generate factory attributes

I want to do following: classes = ["WelcomeMailing", "NoticeMailing", "FeedbackMailing"] #...... FactoryGirl.define do classes.each do |tclass| cl_attributes = ["body", "subject", ...
0
votes
3answers
40 views

Cleanly Setting up multiple models in FactoryGirl for a test/spec

I have been picking up on Rails best practices and learning to write good tests for my rails application. I am using rspec + FactoryGirl to test at the moment. For a while I was writing basic model ...
0
votes
0answers
21 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 ...
0
votes
1answer
55 views

Can't sign in with FactoryGirl's user/data

I have to sign in the user before doing my tests which will use JS. The sign in page does work (except on this test). require 'spec_helper' require 'capybara/poltergeist' include Capybara::DSL ...
0
votes
2answers
42 views

FactoryGirl: Creating dynamic factories with parameters?

I have three factories that i want to DRY up. They look like this: factory :sequenced_stamps_by_years, class: Stamp do ... sequence(:day_date) { |n| n.years.ago } end factory ...
0
votes
2answers
121 views

Reset 'sequence' for FactoryGirl tests

Does anyone know how to reset the sequence method for FactoryGirl? I have a factory that creates a list of tasks and I want to order to start at 1 every time. I use 'sequence' because the task list ...
0
votes
1answer
25 views

factory girl and timestamp in email

I'm trying to put a timestamp in the email to generate uniqueuenss in a users table. I have: FactoryGirl.define do factory :user do sequence(:name) { |n| "Person #{n}" } email { "jxt-{ ...
0
votes
0answers
92 views

Testing nested controllers: NoMethodError: undefined method `empty?' for nil:NilClass

I have been trying to get my controller test pass... My routes.rb namespace :school do resource :account, :except => [:new, :create, :destroy], :controller => 'account' resources ...
10
votes
1answer
3k 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 ...
10
votes
3answers
2k 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' ...
0
votes
0answers
23 views

Rails 3 create seed data for lookup tables in test environment

I am working with Rspec, FactoryGirl, and Capybara for my testing in my rails application. In my application when i create what i call a Release (that is the model name as well) the application uses ...
0
votes
1answer
49 views

Default_scope in Rails model when testing with Rspec using FactoryGirl

I'm developing a blog in Rails and I'm stuck when I was trying to test the default scope I added to the Post model in order to have the posts in descending order of their creation date. Post code: ...
0
votes
2answers
55 views

FactoryGirl Test Failure - Trying to Build an Association to Itself

I'm trying to use FactoryGirl to create a self-associated object to use for testing a simple tree of categories. I've read through FactoryGirl's Getting Started doc for setting up assocations, but ...
0
votes
1answer
44 views

Factory Girl with polymorphic has_many association

I'm trying to set up a factorygirl has_many association with a polmorphic association, using the new syntax. Here is the code. It isn't properly building the address, and associating it with the site. ...
0
votes
2answers
81 views

NoMethodError: undefined method `sign_in_as!', FactoryGirl, Rspec, Rails

I am new at Rails. I'm using FactoryGirl to create users for my integration tests, and I cannot figure out how to sign in my user in the test. My factory looks like this: FactoryGirl.define do ...
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, ...
1
vote
1answer
47 views

FactoryGirl override attribute of associated object

This is probably silly simple but I can't find an example anywhere. I have two factories: FactoryGirl.define do factory :profile do user title "director" bio "I am very good at ...
0
votes
1answer
26 views

Factory Girl Issue with create

Why does the following placed in spec/factories.rb give me the error out put bellow: FactoryGirl.create :user do |f| f.sequence(:email) { |n| "test#{n}@example.com" } f.password "test" end ...
1
vote
0answers
21 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
1answer
37 views

Mongoid find not working?

I have Group and User models. User belongs to Group, Group has many Users. I'm writing an integration test with Rspec: When a Group has at least one User, the Group is not deleted. Factory: ...
3
votes
3answers
1k views

Comparing Factory Girl with Fabrication

There seems to be few resources about the fabrication gem, and I couldn't find a good comparison of the features that distinguish it from factory_girl. As of versions fabrication-2.2.3 and ...

1 2 3 4 5 19