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
1answer
15 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
0answers
13 views

Mute rails/rspec log for tests with file fixtures

I'm testing image uploading in rails application, using rspec 2.13.0 and factory_girl 4.2.0. I recently updated rails to 4.0.0.rc1 and those examples became too verbose. Console output: ... ruby ...
1
vote
1answer
16 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
29 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 # -------------- ...
0
votes
1answer
36 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
41 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 ...
1
vote
0answers
15 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 ...
0
votes
0answers
15 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
2answers
24 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 ...
0
votes
1answer
20 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
33 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 ...
1
vote
1answer
28 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 ...
0
votes
0answers
23 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 ...
1
vote
2answers
24 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
20 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
35 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
20 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
2answers
40 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
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
79 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 ...
0
votes
1answer
53 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
0answers
22 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
44 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
1answer
40 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. ...
1
vote
1answer
42 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 ...
0
votes
2answers
74 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 ...
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 ...
0
votes
2answers
28 views

Factory Girl Confirmation Validation in Model Spec

I am having trouble with Factory Girl when trying to test if email confirmation is nil. Here is my model spec (user_spec.rb) require 'spec_helper' describe User do it "is invalid without an ...
3
votes
3answers
67 views

Rspec model tests for average rating method

I'm trying to write tests for the following method: def average_rating reviews = self.reviews review_sum = reviews.inject(0) { |sum, review| sum += review.rating } avg_rating = (review_sum / ...
0
votes
1answer
20 views

how can I define a specil struct by factory girl?

Using RSpec and Factory Girl, I create a factory like this: factory :hot_type do ad_type_id 4 city_id 110000 image "111" content { :link_url => 'xxx', ...
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: ...
1
vote
2answers
56 views

How to build a parent with child factory in one step in order to pass validation

Projects must have at least one task created at the same time to ensure the validation passes. This is the snippet I use to validate this: class Project < ActiveRecord::Base validates :tasks, ...
1
vote
3answers
37 views

How to create an article of the user

I am testing the controllers with RSpec, FactoryGirls. It is my factories.rb FactoryGirl.define do factory :user do |user| user.sequence(:name) { Faker::Internet.user_name } user.email ...
0
votes
1answer
41 views

Rails Capybara Test has empty Instance Variable

I have a controller sending in a list of vendors to my controller, and on normal view it's working fine. class VendorsController < ApplicationController respond_to :html, :json def index ...
0
votes
1answer
78 views

Rails Factory Girl “Create” not saving record?

I have two capybara tests that are testing the signup process on my rails application, both using factory girl. One is just using Factory Girl build command and saving it with the form: it 'should ...
0
votes
0answers
21 views

Error Binary data for string in “crypted_password” column when working with factory girl rails

When working with FactoryGirl in my development machine, I started to get some: Binary data inserted for `string` type on column `crypted_password` since just shortly. It seems to be an encoding ...
0
votes
0answers
23 views

Using Factory Girl in Rails to create records as an admin or without protection

moving to FactoryGirl on my specs and am getting a failure. I have googled and checked in stack overflow, also read through the source code and couldn't figure it out. Anyway, I have classes that ...
0
votes
1answer
31 views

Add after_save callback for tag gem model to update tire index

I have a posting model that has tags using the rocket_tag gem class Posting < ActiveRecord::Base attr_taggable :tags def tag_list self.tags.join(",") end def tag_list=(new_tags) ...
1
vote
1answer
29 views

Nested models testing : Could not find table '*' Error.

I'm trying to run RSpec against a working large codebase (I'm relatively new to Rails), but it fails on this point; My bet that it has something to do with the FactoryGirl definitions. Overview of ...
1
vote
1answer
49 views

Calling Rails model from another model

Is it considered a best practice to call a Rails model from another model ? (code below) : #models/user.rb def get_pending_requests(user_id) Friend.where("friend_id = ? AND approved = ?", user_id, ...
0
votes
0answers
33 views

factory_girl > association with lazy attributes

I'm trying to have a factory build an Offering object with a child object Rating that will receive the item_id from it's parent. FactoryGirl.define do factory :offering do item_id nil ...
2
votes
2answers
88 views

FactoryGirl creating objects in development environment

When I boot up my rails console in development I see FactoryGirl creating objects. Clearly I'm doing it wrong, but what's the right way to do this? This code makes my tests work... # ...
0
votes
0answers
51 views

rspec - Factory Girl association before_save

I have a weird issue when using Factory girl assigning objects on create post = Factory.create(:post, :comment => comment, :user => user) runs the after_save and doesn't update the comment ...
0
votes
1answer
44 views

Rails 3 Factory_Girl Factory not registered

I have to admit that I am new to testing and so am trying out my first few Rspec with Factory Girl tests. All is going well until I try and use factory girl. My config is as follows ...
0
votes
1answer
60 views

Rails instance variable created with FactoryGirl not defined in view

I have a view that displays either a welcome message or a video, depending on whether @video is defined. I am trying to write some tests for the view, but I can't seem to figure out how to cover the ...
0
votes
2answers
40 views

How can I avoid using 'FactoryGirl.reload' due to using 'sequence' in my factories?

Having to use FactoryGirl.reload likely to put some overhead on the time it takes to run all tests (when many tests exist) and also it is described as an Anti-Pattern. How can I keep using the ...
0
votes
0answers
86 views

Undefined method `name/each' for nil:NilClass whilst testing index view with associations

I have the association that 'one client has many books'. Instead of the index view of books showing client_id => 1, I have edited it to show the client's name; it works, but the test says ...
0
votes
1answer
45 views

How to use self joining associations in FactoryGirl?

I have two simple factories: factory :parent_category, :class => Category do name "Garden" parent_id 0 display_order 1 end factory :category do association :parent_id, ...
0
votes
1answer
29 views

rspec private method test with factory_girl

cashout.rb class Cashout < ActiveRecord::Base belongs_to :partner private def partner_exist? if self.partner.nil? errors.add(:base, "There is no partner! ") return false; ...

1 2 3 4 5 19