Factory Girl is a Ruby on Rails gem that allows to predefine prototypes of models to be used in testing.
1
vote
1answer
98 views
Factorygirl has_one association through model
I have a model with a has_one association through another model.
class Publisher
has_many :books
end
class Book
belongs_to :publisher
has_one :author
end
class Author
belongs_to :book
...
0
votes
1answer
51 views
Rails Factory Girl rolling back in the middle of a spec and transactions
I am testing a method on my group model. It relies on creating a few badgetypes through a factory.
Here is the code
it "add itself to badges with method add_to_badgetypes" do
badge = ...
0
votes
1answer
60 views
Factory Girl associations with three objects
I have a form object that has form fields (via foreign key form_id)
A form has many form_fields.
There are also form_field_labels associated with form_fields (via foreign key field_id)
A form_field ...
3
votes
1answer
342 views
Rspec/Guard/FactoryGirl returning erroneous 'undefined method' error
First, I have a valid factory/model, and this particular test runs fine through the console.
model
validate :some_condition
def some_condition
errors.add(:attribute, "cannot be less than 5") if ...
1
vote
1answer
70 views
Devise won't sign in properly in controller test with FactoryGirl
I've got some funny behavior when trying to get Devise to sign in properly in my controller testing. It seems to work in certain cases, but not in others. I'm not sure if this is an interaction ...
0
votes
1answer
76 views
Model method is working in browser, but not in FactoryGirl Rails
The following method works fine in the browser. All it does it takes all the associated transactions, and sums their total amounts together.
wallet.rb
has_many :transactions
# Sums the transaction ...
1
vote
2answers
58 views
FactoryGirl with associations
I have 2 models, Product and Category.
Product has category_id attribute. So, Product belongs to Category, and Category has many Products.
<!-- language: rb -->
class Product < ...
0
votes
2answers
32 views
How to prevent state_machine from executing when creating a model with FactoryGirl in Rspec
It seems to me that if I use FactoryGirl to create a model whose states are handle using the state_machine gem, then state_machine will then trigger.
FactoryGirl.create(:order)
How can I prevent ...
0
votes
1answer
108 views
How to load Factories for Embedded Models (Mongoid - Rails)
I am using Mongoid in my Rails application, consider i have the below fields in a class named "Post" with below structure
class UserPost
include Mongoid::Document
field :post, type: String
...
1
vote
1answer
58 views
Using associations in hooks with FactoryGirl
I'm in a hard situation with FactoryGirl that maybe you can help me to solve. The code is like this:
class Bet
belongs_to :market
belongs_to :option
has_one :market, :through => :option
...
0
votes
1answer
55 views
FactoryGirl table and column have the same name, unable to save values
I have an Image model with a :text column named image and am unable to save the image field using FactoryGirl.
Here are the relevant piece of code:
image_spec.rb:
let(:image) { ...
0
votes
2answers
78 views
Cloning a model in Factory Girl?
I want to use Factory Girl to generate a large collection of models, each of which only differ by one or two attributes.
Is there a way to have a factory accept an instance of a model? Ideally, I'd ...
0
votes
1answer
38 views
is there a proble with the way i set up factory girl
I'm following micheal hartl rails tutorial .I'm on chapter 10 . is there something wrong with the way i've define the cotent part in factory girl .
I'm getting this error from factory girl when i'm ...
0
votes
1answer
60 views
Understanding how ActiveRecord exists? works when building an association
I have two models that are associated via a has_many relationship. E.g.
class Newspaper < ActiveRecord::Base
has_many :articles
end
class Article < ActiveRecord::Base
belongs_to :newspaper
...
2
votes
1answer
83 views
How do you create embedded documents using FactoryGirl?
I am using FactoryGirl and RSpec to test my code. Mongoid in my ORM. The problem I am encountering is that in order create an embedded document, you must also create the parent document. Here is an ...
1
vote
1answer
140 views
has_many through with Factory Girl
I've been struggling with setting up a has_many through relationship using Factory Girl.
I have the following models:
class Job < ActiveRecord::Base
has_many :job_details, :dependent => ...
3
votes
1answer
173 views
ArgumentError: Sequence not registered: email
I keep getting this error when I run rspec: Sequence not registered: email.
However, I did set it in my factories.rb file. Any ideas on how to fix this? The app is running fine.
Failures:
1) ...
0
votes
2answers
75 views
It is possible create records in controller specs?
I've wrote the follow example:
it "should assign @services containing all the current user services" do
customer = FactoryGirl.create(:user, fullname: "Iris Steensma")
sign_in customer
service ...
0
votes
2answers
59 views
How do I setup my authentication data with rspec and factory girl?
I have a simple user factory that looks like this:
FactoryGirl.define do
factory :user do
name "jeff"
email "jeff@lint.com"
password "foobar"
password_confirmation "foobar"
end
...
0
votes
1answer
162 views
rspec not running because of factorygirl
When I run rspec spec/requests/users_spec.rb
I get this:
admin@Administrators-MacBook-Pro:~/Desktop/sample_app$ rspec spec/requests/users_spec.rb
No DRb server is running. Running in local process ...
0
votes
2answers
305 views
Factory Girl: uninitialized constant
I have a factory such as:
FactoryGirl.define do
factory :page do
title 'Fake Title For Page'
end
end
And a test:
describe "LandingPages" do
it "should load the landing page with the ...
0
votes
3answers
880 views
FactoryGirl — Factory not registered
New to Ruby, sorry if this is obvious. I've already looked here and here. I'm loading factory_girl_rails fine.
I figured it must be a syntax error, but after an hour of head scratching really haven't ...
0
votes
0answers
74 views
Rails: Troubleshooting Factory Girl
I'm trying to do unit tests on a fairly complex model. Unfortunately, I can't get them off the ground because Factory Girl is failing to create valid factories. I get this error message in my console:
...
2
votes
2answers
225 views
FactoryGirl has_many :through relationship broken in Rails 3.2.11
Everything was working as expected, until I upgraded to Rails 3.2.11.
This is how my models are setup :
class Student < ActiveRecord::Base
has_many :institutes
has_many :teachers, ...
0
votes
1answer
87 views
multi tenancy and rspec
I'm still getting familiar w/ RSpec and am running into some issue when setting up test for my multi tenant app.
The app works at:
client1.example.com
client2.example.com
etc....
In my RSpec i'm ...
0
votes
1answer
195 views
ActiveRecord before_validation callback not fired when called from RSpec example
I have read most of the answers pertaining to similar issues but haven't found a solution yet. The code is as follows:
Setup
class Person < ActiveRecord::Base
# Other inconsequential code
# ...
0
votes
1answer
58 views
Running RSpec - Factory Girl locks up and doesn't run - Rails Sandbox
Just wanted to post a quick thing I found about Factory Girl for others who are new to using it like myself. The use-case for this solution is likely limited, but it's worth posting.
I was running ...
1
vote
1answer
89 views
Using Capybara to select multiple objects created by Factory Girl
I am using Raild 3.2.11, Capybara 2.0.2 and Factory Girl 4.1.0.
I am trying to select multiple users in a form using Capybara. However it looks like my users are not being created. The views work ...
1
vote
0answers
427 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' ...
0
votes
1answer
25 views
I set two things equal explicitly and they do not return equal.
This has been stumping me for days.
test "should check inbox for messages" do
@inbox = create(:inbox)
@user = create(:user)
#user owns inbox
@inbox.user_id = @user.id
@inbox.save
assert_equal ...
0
votes
1answer
31 views
Ensure that :create of FactoryGirl goes through controller
Some of my tests don't work because of saved data in my database. I found out (code below) that the create function of FactoryGirl doesn't go through the controller steps to ensure that everything ...
2
votes
1answer
50 views
RSpec and Factory for testing next, prev records
I have a User model which has methods for a next and previous user:
def next_user
User.where("id > ?", id).order("id ASC").first
end
def prev_user
User.where("id < ?", id).order("id ...
0
votes
1answer
71 views
FactoryGirl not accepting property overrides
I am sure this is a trivial typo but I don't see it. This code is after slashing down to the minimum and I still see this syntax error. Forgive my stupidity, as I know I will feel once you show me ...
0
votes
1answer
115 views
Rails rspec factorygirl pluralize test
Is it possible to test the pluralize function in rspec?
let(:schedule) { FactoryGirl.create(:schedule) }
Failure/Error: it { should have_selector('h1', text: pluralize(Schedule.count.to_s, ...
0
votes
1answer
88 views
How to create FactoryGirl for embedded data in test on mongoDB?
i have a team model file as
class Team
include Mongoid::Document
field :short_name, type: String
field :sdi_team_id, type: Integer
embeds_many :history, :class_name => "History"
end
class ...
0
votes
2answers
152 views
rails 3 - FactoryGirl create associated records
I am trying to create some test data to fill my tables with so that i can test functionality on my site.
The tables in question are: songs, song_arrangements, and song_arrangement_files. The are ...
1
vote
2answers
133 views
Test database structure is not created when using Factory girl with Rspec (Rails)
I am using FactoryGirl in my rails application instead of Fixtures.
When i try to use factory girl in my test and create some test data, it shows like
PG:Error relation "users" doesn't exists (i ...
2
votes
1answer
127 views
received :update_attributes with unexpected arguments
I am very new to rspec and factory girl and I am stuck with a strange problem. I have an action in a controller like:
def update
@property = current_user.properties.find ...
0
votes
1answer
54 views
Where condition in FactoryGirl
I am trying to create an application using Ruby On Rails and MongoDb as backend. And I am using FactoryGirl for testing.
As I am new to these technologies, I am not sure if I could use where ...
0
votes
1answer
68 views
How to resolve data append in factorygirl while testing?
I am new to rails. i try to write test for a model for that i use factory-girl gem. In that data was taken from XML file.
My problem is when ever am running my rspec file, data was appended every ...
0
votes
2answers
524 views
RSpec gives error 'trait not registered: name'
I tried to test my Rails 3 application on Windows with RSpec. I've wrote tests and factories, but can't solve the issues which raise when I run RSpec on command line.
Here is one of the test files:
...
1
vote
0answers
114 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
2answers
452 views
Rails 3 Factory Girl + Many to Many Relationships
There aren't currently any up to date answers for this using Factory Girl 4.1 (that I could find) - how do you setup a many to many relationship inside of a factory?
For instance I have Students and ...
0
votes
2answers
165 views
Testing carrierwave keeps returning “Image can't be blank”-error
I've been implementing carrierwave, which works great in the browser. However, my tests keep returning this:
Error
1) Item
Failure/Error: it { should be_valid }
expected valid? to ...
3
votes
1answer
170 views
Prevent factory_girl from loading spec/factories/*.rb files
In a rails project, I'd like to put factory_girl factories in spec/support/factories/ instead of spec/factories/ (since the later already contains specs for "factory" classes).
Here is my ...
1
vote
2answers
94 views
Rails FactoryGirl Duplicated Factory
I have the following factories defined in my factories.rb file:
require 'factory_girl'
FactoryGirl.define do
sequence(:email) {|n| "person-#{n}@example.com" }
factory :country do
...
2
votes
1answer
113 views
Devise test database records conflicts on simultaneous tests
I generate Users, Clients and Invoices from the following factory
FactoryGirl.define do
factory :user do
sequence(:email) { |n| "person_#{n}@example.com" }
password "foobar"
...
2
votes
1answer
131 views
What's the difference between the build and create methods in FactoryGirl?
The Factory Girl introduction delineates the difference between FactoryGirl.build() and FactoryGirl.create():
# Returns a User instance that's not saved
user = FactoryGirl.build(:user)
# Returns a ...
0
votes
1answer
224 views
Factory girl seed data
I have a Roles model that needs 'student', 'instructor', 'admin' rows before any tests are run. I can create (and pass tests) for a user with associated student role, but this only creates the one ...
0
votes
1answer
372 views
factory girl nested factory
I have an account model that belongs_to a role model.
factory :role do
name "student"
end
factory :account do
user
role
end
The first factory creates a role named ...


