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

1
vote
1answer
50 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
35 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
98 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
60 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
47 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
64 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
91 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
46 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
32 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; ...
0
votes
1answer
69 views

Undefined method `to_i' for <Array:0x########> whilst testing using factories

I have this problem using FactoryGirl. Each time I run the test, it comes up with the error: Undefined method `to_i' for Array I cannot see where it is trying to convert to an integer. My best guess ...
1
vote
2answers
52 views

Table count does not increase after save returns true for nested resource rspec test

I have a 'Mastertag' model as a nested resource for 'Project' with a create action as: def create @mastertag = @project.mastertags.build(params[:mastertag]) if @mastertag.save ...
3
votes
1answer
72 views

FactoryGirl define attribute by calling method on another factory

Here is an example from the FactoryGirl documentation: FactoryGirl.define do factory :post do name "Post name" user end end In this example, user is invoking another factory. What I ...
1
vote
0answers
76 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
40 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 ...
0
votes
0answers
221 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 ...
0
votes
1answer
49 views

Testing 'create' action of a nested resource with Rspec + FactoryGirl

I have searched a lot on the internet as well as other similar questions on Stackoverflow, however I am still not sure on how to test the create method of a nested resource in my rails application. ...
1
vote
1answer
66 views

has_secure_password, RSpec and user creation

I am trying to get a minimal test to pass with Rspec and user login. Part of that means setting up a user that uses authentication with has_secure_password. I am trying with this: scenario 'test ...
0
votes
0answers
23 views

Is it possible to share FactoryGirl objects across multiple Ruby applications?

I'm somewhat new to the Ruby and Rails world. The application I am working on is using FactoryGirl and Dupe for testing. The problem is that there appears to be quite a bit of duplication of code ...
1
vote
1answer
33 views

Segmentation fault after launch rspec test

We're working in a RoR app (Ruby v. 1.9.3, RoR v. 3.2.12, rvm v. 1.8.14) and when we launch a rspec test, we obtain the following crash (I can't copy here, it's too long): ...
0
votes
1answer
39 views

FactoryGirl creations don't show up in Selenium tests

I have a simple test case that looks like this: describe 'Quiz packs page' do before :each do FactoryGirl.create(:quiz_pack, :first_in_first_pack).should be_valid end end it "should have an ...
-3
votes
1answer
33 views

rails factory girl comparison failed

_spec.rb context 'find discount coupon' do it 'if coupon suitable for use' do coupon = Factory(:standart_discount_coupon) ...
0
votes
0answers
33 views

Rails has_many and belongs_to on same model

I have a School model that has_many :users. But, each school also has a primary_user. Here is my model: has_many :users belongs_to :primarycontact, :class_name => "User" This works fine in ...
0
votes
1answer
66 views

factorygirl create error

When I was debugging in console with pry,I have run brief = Factory(:brief,:project => Factory(:project)) this command.It supposed to be work but I got this error. ActiveRecord::RecordNotUnique: ...
2
votes
1answer
52 views

Test data generation for Ember.js (like factory_girl or machinist)

I'm writing unit and integration tests against an Ember.js application, and I can't connect to the server when the application is under test. This means I need to use DS.FixtureAdapter to back up my ...
0
votes
1answer
41 views

Can capybara be used with factory girl and authologic

I am using authologic in my rails app, while I create user via factory girl and try to login via log form, I can't login(getting issue login is not valid). Any one having any suggestion? Thanks in ...
1
vote
1answer
181 views

How to use FactoryGirl factories to build a development database?

I have already built some elaborate FactoryGirl factory definitions for testing a Rails project, and for this purpose they are working well. I'd now like to use the same definitions with a script ...
1
vote
1answer
75 views

Get belongs_to association in FactoryGirl to work right

I'm trying to get associations in FactoryGirl to work, and they just ... don't. I've basically got this: class Foo include Mongoid::Document belongs_to :bar end class Bar include ...
0
votes
1answer
93 views

factory girl nested attributes

In rails console,I run this command bill = Bill.last bill.bill_extras The result is like that. [#<BillExtra id: 141, bill_id: 621, content: "extra fee", prize: ...
0
votes
0answers
20 views

Rspec hook not running anymore

require 'spec_helper' require 'ruby-debug' describe Bill do before(:all) do @project=Factory(:project_started_with_no_brief) @customer_bill=Factory(:customer_invoice, :project => ...
0
votes
0answers
64 views

Implicit attribute not overridden in factory_girl

I am using rspec + factory_girl for testing my rails application. I am trying to add a user_id to some existing objects, and I am getting an unusual error from factory_girl regarding the declaration ...
0
votes
1answer
48 views

Rspec expected 1 errors on :email, got 2

I have a Factory in my code as : FactoryGirl.define do factory :user do name 'Nitish' email 'nitishxyz@gmail.com' password "password" password_confirmation "password" end end ...
0
votes
1answer
94 views

FactoryGirl and belongs_to association when testing Rspec

I have the following model: class Team < ActiveRecord::Base # Setup accessible (or protected) attributes for your model attr_accessible :name validates_presence_of :name belongs_to :user ...
1
vote
2answers
139 views

Rails Engine with RSpec and FactoryGirl

I followed a few tutorials and docs of FactoryGirl to use with RSpec. Currently I get one error when trying to use FactoryGirl.create: describe "GenericRecipesController" do describe "GET 'index'" ...
0
votes
1answer
160 views

rspec/factory issues from hartl chapter 9.2 - app functions fine, but tests are failing

All tests were working fine up until I made the last change to my rspec tests in section 9.2 of Hartl's tutorial. At that point all the related tests in my user_pages_spec.rb and ...
0
votes
1answer
86 views

Can not determine issue in my factories with factory girl in rspec

I have create couple of factories and created some examples for rspec for one of my projects. I have got everything working on my local. Even, my specs are green on local for both ruby version: 1.9.2 ...
0
votes
0answers
70 views

Rspec Controller Tests with an STI user model?

I'm attempting to write some controller specs for a sub controller, in this case Admin::UsersController It has the basic set of CRUD actions. my users_controller_spec.rb describe ...
0
votes
1answer
93 views

gem ''factory_girl_rails" Error uninitialized constant FactoryGirl (NameError)

Here is my factories/admin_user.rb code FactoryGirl.define do factory :admin_user do |admin| admin.sequence(:email) { |n| "admin#{n}@example.com" } admin.password "123456789" ...
0
votes
0answers
39 views

Mapping FactoryGirl associations by parsing code as blocks

I've been working on debugging a problem in our testing suite that I think has to do with a chain of FactoryGirl associations. My idea is that we have a chain of associations that ends up creating a ...
0
votes
2answers
71 views

testing model methods with rspec and factory

I have a getter/setter method in a model retrieving the last element of an array, and adding to the array (Postgresql array of strings): # return the last address from the array def current_address ...
1
vote
1answer
194 views

Rails 3, FactoryGirl: wrong number of arguments (1 for 0) (ArgumentError)

I'm working on the ruby on rails tutorial, but I encounter problems when testing using FactoryGirl. here is my error information: ...
-1
votes
4answers
81 views

Rails association.create and association.create! returns nil

I'm just throwing this out there because I really can't figure this out. When I call for instance user.articles.create! { title: 'blah' } nil is returned but the object is created. I've not seen ...
0
votes
3answers
67 views

FactoryGirl Error “define_method': tried to create Proc object without a block (ArgumentError)”

Here is my Lesson Factory i-e lesson.rb FactoryGirl.define do factory :lesson do |lesson| lesson.sequence(:title) { |n| "title#{n}" } lesson.sequence(:description) { |n| "description#{n}" } ...
1
vote
1answer
100 views

Rails FactoryGirl Error “undefined method `generate' for LoremIpsum:Module (NoMethodError)”

I have installed "lorem-ipsum" gem in my test environment group :development, :test do gem "lorem-ipsum" end but I am getting NoMethodError. Here is my code snippet sequence(:random_string) {|n| ...
0
votes
0answers
34 views

add shared method to FactoryGirl to coustomize factories

making it simple, I'd like to use FactoryGirl in my Rails project this way: FactoryGirl.define do factory :individual do name {random_name} end end defining the method random_name for ...
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
82 views

Assign variable in rspec controller test

I have an rspec test in which I need to test my controller. it "renders the #show view" do get :show, id: FactoryGirl.create(:quiz) @facebook_profile = FactoryGirl.create(:facebook_profile) ...
1
vote
2answers
145 views

How to build factory girl association?

I'm having troubles building association. I have my models defined like this: class Conversation belongs_to :user1 belongs_to :user2 has_many :messages end and I've defined these factories ...
5
votes
1answer
230 views

Zeus + FactoryGirl::Syntax::Methods. undefined method `create'

I have RSpec.configure do |config| config.include FactoryGirl::Syntax::Methods end which properly work with simple rspec spec/model/user_spec.rb (allows me to use create(:user), not ...
0
votes
2answers
37 views

Sharing factories across rspec specs in a DRY way

So I have some model specs like this: describe 'something' do it 'another thing' do a_model = FactoryGirl.create(:a_model) another = FactoryGirl.create(:another) #some code using ...

1 2 3 4 5 19