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
66 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
49 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
66 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
69 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
39 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
183 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
46 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
61 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
21 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
32 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
34 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
32 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
65 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
50 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
167 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
72 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
83 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
60 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
43 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
88 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
132 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
152 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
82 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
65 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
77 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
38 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
66 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
172 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
79 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
64 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
94 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
33 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
75 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
127 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 ...
4
votes
1answer
208 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
vote
0answers
44 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, ...
0
votes
0answers
22 views

FactoryGirl, common object in associated class

I have the following models: class A < ActiveRecord::Base attr_accessible :title, d_id belongs_to :d end class B < ActiveRecord::Base attr_accessible :description, d_id belongs_to :d ...
0
votes
0answers
79 views

FactoryGirl and seed data clash

This is a very general problem I'm trying to address. I have found a 'best bad solution' and I would like some refreshing views on how to handle the case since I'm far from satisfied from my solution. ...
0
votes
0answers
213 views

Authlogic/Rspec/Rails 3.2: UserSession.find returns nil in ApplicationController

Relevant models: class User < ActiveRecord::Base acts_as_authentic end class UserSession < Authlogic::Session::Base end ApplicationController: class ApplicationController < ...
0
votes
1answer
81 views

FactoryGirl set attribute with association

I have a Note object attached to a Course, I want to randomly set the @note.number to rand(@note.course.sections) in FactoryGirl. I tried: factory :note do association :course number { ...
1
vote
0answers
110 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 ...
0
votes
1answer
132 views

How to test Rails create action with nested attributes and FactoryGirl?

I have a model that accepts an invoice and its nested items: class Invoice < ActiveRecord::Base belongs_to :user has_many :items attr_accessible :number, :date, :recipient, :project_id, ...
0
votes
0answers
57 views

uninitialized constant FactoryGirl::Evaluation::Observable

I'm trying to use factory_girl 4.2.0 with rspec 2.13.0. First I add 'factory_girl' to my Gemfile and bundle update: Using aasm (3.0.16) Using i18n (0.6.4) Using multi_json (1.6.1) Using ...
0
votes
0answers
89 views

Rails: Why do my FactoryGirl fixtures successfully create in the rails console but fail during rake test?

Assertions in my tests are erring, but the commands that they're erring on are running successfully in the rails console. I am using Test::Unit tests with capybara, mocha, factory_girl_rails, ...
0
votes
2answers
92 views

undefined method `Factory' on user_spec

I have ran into a quick problem. I am getting a "undefined method `Factory'" for the user_spec page. I believe I have the incorrect syntax for " let(:user) { Factory(:user) }". However I can't come up ...

1 2 3 4 5 19