Tagged Questions
0
votes
0answers
15 views
Why can't I populate a login form with a FactoryGirl.create(:user)?
I'm trying to test a login form with FactoryGirl, Rspec, and Capybara.
I can test the signup form by running FactoryGirl.build(:user), but I can't login a user that is created by Factory Girl with ...
0
votes
1answer
22 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", ...
1
vote
2answers
59 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, ...
3
votes
1answer
70 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 ...
0
votes
1answer
37 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 ...
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 ...
2
votes
0answers
34 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 ...
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 ...
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
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
...
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, ...
2
votes
1answer
39 views
Test validation that makes sure record is associated to records only owned by parent with spec
I have model Category which has and belongs to many Packages. When a user creates a Posting in a Category, it must belong to a Package that is in its category.
Here's the code for the custom ...
0
votes
1answer
113 views
Passing Object's Params into Rspec test with params.merge
In my rspec test, I create an object with factorygirl, and in my create controller, I need parameters in order to create an object. Since there are lots of parameters and connection with paperclip, I ...
0
votes
2answers
382 views
“Email has already been taken” error with Capybara and Factory Girl
I think this could be related to the issues I described in this question.
I can't figure out why Capybara is not able to test the sign up form on my rails app when using Factory Girl to create user ...
2
votes
1answer
94 views
Create factory for deeply nested models
I have been using rails for almost 4 years now in in all that time I have been sinning. I have never written a single test. Not sure why it has taken me this long to see the giant mistake I have been ...
1
vote
2answers
366 views
FactoryGirl: Populate a has many relation preserving build strategy
My problem seems very common, but I haven't found any answer in the documentation or the internet itself.
It might seem a clone of this question has_many while respecting build strategy in ...
1
vote
1answer
165 views
Factory Girl Polymorphic has_many, belongs_to
class Food < ActiveRecord::Base
has_many :images, as: :imageable, foreign_key: :imageable_uuid, dependent: :destroy
end
class MenuPhoto < ActiveRecord::Base
has_one :image, as: :imageable, ...
0
votes
2answers
192 views
Rspec testing instance variables with user creation
I'm testing to make sure that a created user is assigned to my instance variable @user. I understand what get means, but I'm not sure what to write for the test. I'm returning with an argument error ...
1
vote
0answers
236 views
Why is database_cleaner breaking my tests (minitest / capybara / factory girl)?
I'm trying to get database_cleaner working with my test suite and I can't find anything online about this error:
ERROR Couldn't find User with id=1
The tests run fine until I add database_cleaner. ...
3
votes
2answers
475 views
Capybara not working with factory girl
I'm using minitest with factory girl and capybara for integration tests. Capybara works fine when I don't user factory girl to create a user object, like this:
it "logs in a user successfully" do
...
0
votes
1answer
142 views
Missing template error on create action when trying to use factory girl to test user logins in my rails app
When I try to use a factory to test my login on my rails app, I keep getting a missing template error. It's expecting a template for my create action, even though I have a redirect in my controller. ...
0
votes
1answer
95 views
How can I properly test my model (in rspec) that uses the unread gem?
I have an app that's using the unread gem to mark certain models as read or unread for a user. The gem is frakkin sweet and works flawlessly in the app. Unfortunately, I'm hitting some weird errors ...
0
votes
0answers
26 views
Stubbing objects with required associations
Suppose we have two models tightly linked together
class Author << ActiveRecord::Base
has_many :books
validates :books, :presence => true
before_create :create_many_books
end
class B ...
0
votes
1answer
53 views
How to create a factory where two objects belong to the same parent?
I have the following factory:
factory :user do
name 'Henk'
email 'foo@bar.co'
password 'foobar'
password_confirmation { |u| u.password }
end
factory :photo do |ph|
user
...
3
votes
3answers
1k views
Comparing Factory Girl with Fabrication
There seems to be few resources about the fabrication gem, and I couldn't find a good comparison of the features that distinguish it from factory_girl. As of versions fabrication-2.2.3 and ...
0
votes
2answers
78 views
why can't assign value in it or special block on rspec
I'm newbie on rails and i want to test an existing rails project with rspec,shoulda and factory girl.
I try to assign value a variable of a model but i can't.
this is the error;
Failure/Error: ...
0
votes
2answers
77 views
how to test a method of models with rspec and factory
I'm newbie on rails and I have to write tests for existing rails apps with 'Rspec','shoulda' and 'factory girl' gems. I can test non specific tests like validates_presence_of: something with 'sholda' ...
16
votes
2answers
7k views
Rails 3.2, RSpec, Factory Girl : NameError: uninitialized constant Factory
Ive been following this introductory to Rails testing and Ive run into an issue I cant seem to find the solution to. Im very familiar with Rails but this is my first foray into testing.
Anyhow, I ...
0
votes
1answer
152 views
FactoryGirl sequence failing [duplicate]
Possible Duplicate:
Factory Girl sequences not incrementing
It appears that FactoryGirl is not performing the sequence on email correctly, since I'm getting a failure when I try to create a ...
3
votes
1answer
158 views
FactoryGirl trouble
I have a class that is defined in the module.
module Mod
class Zed
include DataMapper::Resource
end
end
For testing, I define factory.
#/factories/zed.rb
FactoryGirl.define do
factory ...
0
votes
0answers
117 views
FactoryGirl creating records on loading?
I'm using the gem factory-girl-rails in a minitest-rails-spork setup. It seems that every time I start the tests, FactoryGirl executes every factory once and pollutes the db. Is this intended ...
0
votes
1answer
172 views
Proper way to handle database when testing with Factory Girl
I'm trying to move a Rails 3 app that's using Fixtures over to Factory Girl and am not entirely sure on the proper approach to the database. (Note that I'm using Rspec for the tests).
I have a ...
2
votes
1answer
425 views
FactoryGirl 3.x has_many through association
I've seen a couple examples of the older syntax, but I can't find an example using the new 3.x syntax (one such older example: factory girl multiple has_many through's).
Models
class ...
0
votes
1answer
411 views
Paperclip::Attachment passed as string when using FactoryGirl
I am trying to create a functional test for paperclip 3.1.2 on rails 3.2.6 using FactoryGirl 3.0 and when i pass the file attachment my controller receives a string which is the file location and not ...
1
vote
1answer
145 views
How to test a model with a has_one association with FactoryGirl when I am already creating the association in the model
I have a User model which has_one Profile. The Profile is automatically created when I create the User like so;
class User < ActiveRecord::Base
has_one :profile, dependent: :destroy
...
0
votes
1answer
88 views
Create a dictionary as an attribute in FactoryGirl
Factory Girl allows to do something like:
FactoryGirl define
factory :post do
content "some content"
styles "styles here"
team 1
end
end
However, if I try something inside ...
2
votes
2answers
176 views
FactoryGirl with Rspec to create a dictionary
I am working on Ruby on Rails rspec testing and I have a question. Apparently, I have to create a dictionary, sort like
@example = {:attr1 => "somevalue", :attr2 => "some",
:attr3 ...
0
votes
3answers
462 views
RSpec stub not working for integration test
Inside a controllers test, I want to test that when logged in, the controller renders the request fine, else if not logged in, it redirects to the login_path.
The first test passes fine as expected, ...
0
votes
1answer
88 views
rspec - redirect to Group.last going to wrong record
39 tests pass but 1 fails.
Expected response to be a redirect to <http://test.host/groups/11>
but was a redirect to <http://test.host/groups/12>
I create a new record and try to ...
0
votes
2answers
57 views
Test failing, even though the thing it is testing is passing
I have discussions that polymorphically belong to project, task, and subtask. When user clicks on link 'finish discussion', the boolean attribute of discussion model changes from false to true.
I ...
4
votes
1answer
2k views
Testing “Post create” with Rspec
I am trying to test a "Post create" action with Rspec. The code is as follows:
def valid_attributes
{
:zone => Flymgr::Zone.new(:countries => Flymgr::ZoneCountry.first,
...
0
votes
1answer
49 views
Struggling to understand how this block works
I am looking at factories in rails and have hit a problem in my understanding of this code:
Factory.define :user do |f|
f.username "foo"
f.password "foobar"
f.password_confirmation { |u| ...
2
votes
2answers
259 views
rspec test failure when switching from initializing attributes to Factory
This makes no sense to me, hope someone can help. I'm getting a single test failure when creating a user using a factory (seemingly similar tests pass).
In my user_spec.rb test file, the user was ...
2
votes
0answers
177 views
How to do composite primary keys with FactoryGirl Gem
How to do composite keys using FactoryGirl with below relationship
Portal(uuid, name)
listing(uuid, portal_uuid, name)
location(uuid, portal_uuid)
in here listing and location has composite ...
2
votes
1answer
820 views
Rails How to use FactoryGirl in Seeds.rb?
I want to have the Seeds.rb file run a method in a file from the Rails.root.join('spec') directory which will fill the database with data generated by FactoryGirl. Lets call this file "helpers.rb" ...
1
vote
1answer
888 views
How can I load seeds.rb into the test database without breaking FactoryGirl?
I have tried getting solutions from the SO questions listed at the bottom but my problem is that I am using Capybara and FactoryGirl and I cannot seem to load seeds.rb from anywhere without causing ...
0
votes
1answer
124 views
Rails fixtures with a ruby script
Fixtures, factories, ... etc don't execute the real create() method. For instance, when an user is created, I generate a Preference object for him. But with fixtures I have to do it manually.
So ...
0
votes
1answer
134 views
Testing Rails application with plenty of seed data
I'm maintaining a Rails 3.1 app. App db has more than 50+ tables and maybe 30 of those need seed data for the app to function correctly.
App has plenty of statistical data (as a seed data) and some ...
0
votes
3answers
897 views
How to do this model association in FactoryGirl?
I have this rails model association (has_many :through)
class User < ActiveRecord::Base
has_many :assignments
has_many :roles, :through => :assignments
end
class Assignment < ...
