Factory Girl is a Ruby on Rails gem that allows to predefine prototypes of models to be used in testing.
0
votes
1answer
140 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 ...
2
votes
0answers
33 views
How do I send params to a FactoryGirl trait?
I'm writing some tests that call a FG create with a trait that after_create, makes an associated object. Is there a way to send parameters to that associated product when I make the FG, or do I need ...
1
vote
2answers
134 views
How to test forms with nested attributes using RSpec?
I have an Invoice model that may contain a number of Items:
class Invoice < ActiveRecord::Base
attr_accessible :number, :date, :recipient, :items_attributes
belongs_to :user
has_many ...
0
votes
3answers
77 views
stuck on validation error of email already taken
I am following railscast #275 with testing the forgot me password. I am having troubles getting past the email has already been taken error. With the coding I have by following the tutorial I am ...
0
votes
1answer
124 views
Factory girl not registering user
I have looked at other topics and did a Google search, none of the solutions works unfortunately. I have just started writing my first tests for password reset. I should be receiving a Capybara ...
0
votes
1answer
116 views
Factory Girl - overriding attributes of belongs_to object
I'm trying to create a Meeting object, and while doing so override the attribute of the Course object which the Meeting object belongs_to:
Here are my models:
class Course < ActiveRecord::Base
...
0
votes
2answers
140 views
How to create test objects with nested attributes with FactoryGirl in Ruby on Rails?
I have an Invoice model that may contain a number of Items as well:
class Invoice < ActiveRecord::Base
attr_accessible :number, :date, :recipient, :items_attributes
belongs_to :user
...
1
vote
1answer
38 views
Rails Model Methods not working well
I have methods that i'm trying to test in my models, but they're not working well, it doesn't seem to return false when it should- any suggestions?
class Registration < ActiveRecord::Base
validate ...
0
votes
1answer
129 views
Rails Rspec/FactoryGirl not passing correct params to controller
I am trying to write an Rspec test to test one of my controllers in Rails but I am having a problem getting the correct params hash.
My create method in my Activities Controller looks like this(The ...
1
vote
1answer
146 views
why is before :save callback hook not getting called from FactoryGirl.create()?
This simple example uses DataMapper's before :save callback (aka hook) to increment callback_count. callback_count is initialized to 0 and should be set to 1 by the callback.
This callback is ...
0
votes
1answer
63 views
Error running tests for a rails engine
I'm building an application based on the social-stream gem, which is a Rails engine. I have a Rakefile. I've included the factory-girl gem in my Gemfile, but for some reason the rake tasks are failing ...
0
votes
2answers
55 views
How to send params with FactoryGirl (as opposed to manually sending the params as a hash)?
I have the following rspec test that works:
it "redirects to the created api_key" do
post :create, :api_key => {:api_identifier => "asdfadsf", :verification_code =>
"12345"}
...
0
votes
1answer
78 views
RSpec - How to test a database view?
I have a class that is backing a database view. I am using FactoryGirl to try and test this so I go through the normal steps of creating a user instance like so:
before(:each) do
@user = ...
0
votes
1answer
12 views
How to write a sign_in failure test in test unit
I am using devise gem for authentication and I need to test the log-in failure test when a user gives wrong password and I am using factories too. Can anyone help me in writing this?
Thanks in ...
1
vote
1answer
89 views
FactoryGirl after_create method not saving
I have a simple situation setup in order to learn testing with FactoryGirl. A Bank has many transactions. Each time a transaction is created, it should subtract the transaction amount from the bank's ...
0
votes
1answer
229 views
Undefined method after_create with FactoryGirl
I'm trying to defined a has_many relationship in FactoryGirl using the after_create callback, like so in /spec/factories/emails.rb:
FactoryGirl.define do
factory :email do
after_create do ...
0
votes
1answer
40 views
How to skip after_build callback in factories?
I'm facing a problem while creating a factory. I have a factory like:
Factory.define :job do |j|
j.association :service_partner, :factory => :service_partner
j.price_per_task 1.to_money
end
...
0
votes
1answer
172 views
Uninitialized constant (NameError) when using FactoryGirl in module
Here's the error I'm getting when I try to run my tests with RSpec:
C:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.11/lib/active_support/infl
ector/methods.rb:230:in `block in constantize': ...
2
votes
1answer
83 views
Why does this requests spec fail intermittently, or how can I debug it?
This is the test that fails intermittently:
context "as a regular_user" do
before :each do
@user = FactoryGirl.create(:user, :role => 'regular_user')
visit new_user_session_path ...
0
votes
1answer
101 views
RSpec: Factory Girl view test generates a “undefined method” error
I have a page at orders/edit.html.erb that I'm testing with the following code:
require 'spec_helper'
describe "orders/edit.html.erb" do
before(:each) do
@order = FactoryGirl.create(:order)
...
0
votes
1answer
82 views
Implementing associations with Rspec/Capybara for Ruby with Rails project
I have a model that has a method like the following:
class Post < ActiveRecord::Base
MAX_LINES = 100
MAX_POSTS = 5
def self.can_post?(user)
user.posts.count( :conditions => ...
3
votes
1answer
35 views
Factory(:some_factory) or FactoryGirl.create(:some_factory)
Is there any difference between Factory(:some_factory) and FactoryGirl.create(:some_factory)?
Factory(:some_factory) was causing ActiveRecord::AssociationTypeMismatch in one controller spec while ...
0
votes
0answers
51 views
ActiveRecord::AssociationTypeMismatch ruby 1.8 without using spork
I have models specs, controllers spec and request spec. When I run:
rspec spec
models spec are run first, then request and then when controller specs are run the specs for the first ...
0
votes
1answer
74 views
FactoryGirl attribute value not populated on ActiveRecord class instance
I have a FactoryGirl factory defining some default values for an ActiveRecord::Base class. All of the values except one are making it to the instantiated class except for one.
Here is my factory:
...
0
votes
0answers
56 views
How to write tests to validate uniqueness and presence of has_many :through entries
I'm still a bit unexperienced in writing tests and are hoping you could point me into the right direction with the following problem:
I have the following 3 model classes with a has_many :through ...
0
votes
2answers
36 views
Factory - field with sequence as fallback
Question: How can i use for one field both sequence and transient attribute?
Background: I have factory, which has a name. The name is sequence to keep it unique. However in few specs i need it set ...
0
votes
1answer
40 views
How to test for deleting an association in FactoryGirl?
I have the following factory:
factory :store do
room
factory :store_with_items do
ignore do
items_count 4
end
after(:create) do |store, evaluator|
...
0
votes
1answer
115 views
FactoryGirl calling `original_filename` for an object in rspec
I'm working the a Documents class, trying to test it. I've defined the following factory:
require 'factory_girl'
FactoryGirl.define do
factory :document do
user_id '6315'
...
1
vote
1answer
44 views
Rails FactoryGirl instance different from ActiceRecord instance?
Howcome when I use FactoryGirl to create a record and later update said record the factorygirl instance isn't updated? For example if I have the following factory and rspec test:
factory :foo do
...
-1
votes
2answers
322 views
Hartl Tutorial chapter 10 Factory Girl error - factory not registered: micropost
I am getting this error in relation to: "Authentication authorization in the Microposts controller submitting to the destroy action"
spec/requests.authentication_pages_spec.rb:119
The only ...
1
vote
0answers
25 views
Rails / Factory Girl: Mutual presence validations
I have an association between two rails models, 'Project' and 'Step', such that a project has many steps. A step requires a project_id, and a project requires at least one step to be valid...I'm ...
0
votes
1answer
53 views
Testing Custom Validate Action for Nested Attributes
I've got a custom action to validate the number of child attributes. I've put this in the parent's model:
class Location < ActiveRecord::Base
has_many :blacklisted
...
0
votes
1answer
148 views
RSpec/FactoryGirl - MongoID embedded document doesn't persist
Having the following factory :
FactoryGirl.define do
factory :user do
provider "github"
sequence(:uid) {|n| "111111#{n}"}
sequence(:name) {|n| "name#{n}"}
sequence(:email) {|n| ...
3
votes
2answers
92 views
rspec expects doesn't do what I expect
So I have two specs which I thought are testing the same thing yet one fails while the other one passes. I'm working on an app which has a recurring schedule. If a user creates an trip that recurs it ...
0
votes
1answer
48 views
rails3 + rspec2 + factorygirl association
I have the following models
class User < ActiveRecord::Base
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
attr_accessible ...
0
votes
0answers
64 views
Issue with migrating tests from SQLite3 to PostgreSQL
Have two computers, with same app on both.
One runs SQLite3, other one runs PostgreSQL.
All Cucumber tests are passing on SQLite3 PC.
But Postgres PC fails when it comes to relations between models.
...
0
votes
1answer
56 views
_localization suffix for models reserved in FactoryGirl
I have two models in my Rails application:
class Item < ActiveRecord::Base
end
class ItemLocalization < ActiveRecord::Base
end
Similarly, I have two factories:
factory :item do
...
2
votes
1answer
93 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 ...
3
votes
3answers
223 views
Speeding up RSpec & Factory girl model tests?
I'm currently using FactoryGirl and Rspec to test my models, which is great but incredibly slow. The hundreds of tests that I have for each model take about 30 seconds to run, per model.
The core ...
0
votes
0answers
161 views
Rspec + Capybara + FactoryGirl: Already signed in error
I try to pass this friendship features specs using Capybara, Rspec and FactoryGirls on Rails.
For some reason I can't understand why, I'm always getting failing at this error. Looks like the session ...
0
votes
1answer
66 views
Cant find after_create when I do the test
I am using this factory to create Quizes for my test:
factory :quiz_with_two_choices_first_correct, :class => Quiz do |i|
quiz_type Quiz.SINGLE_ANSWER_CHOICE
weight 1
i.after_create ...
0
votes
1answer
51 views
Very simple Rspec rails test is not passing, where it should
I'm having some problems creating an rspec test to my rails application.
Let say that I have a model called MyModel, with the following function, that obtains the instances of all the MyModels that ...
1
vote
1answer
95 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
49 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
58 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
334 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
66 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
75 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
30 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 ...




