Tagged Questions
0
votes
1answer
88 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 ...
1
vote
1answer
653 views
Freshly installed gem (FactoryGirl) causes WEBrick to exit (DEPRECATION WARNING)
trying to start WEBrick:
rails s
=> Booting WEBrick
=> Rails 3.1.1 application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
...
0
votes
1answer
114 views
FactoryGirl3, can't access factories anymore
After I upgraded to the new FactoryGirl, I updated the syntax of the factories I inherited. Now, I bounce between either my factory isn't defined, or it's double defined. All of the answers I have ...
2
votes
1answer
945 views
Rspec + Devise + Factory Girl Testing with Associations
I'm pretty new to Rspec and am migrating a codebase from Rails 3.0.x to Rails 3.1.x and adding in testing at the same time. I was able to get basic controller tests working, but after starting to ...
2
votes
1answer
668 views
Cucumber: Multiline arguments using “step” method inside a step definition
The factory_girl Cucumber helpers are cool. I love that this works:
Given the following users exist:
| Name | Email |
| Alan | alan@example.com |
| Bob | bob@example.com |
But I ...
5
votes
3answers
1k views
Setting protected attributes with FactoryGirl
FactoryGirl won't set my protected attribute user.confirmed. What's the best practice here?
Factory.define :user do |f|
f.name "Tim" # attr_accessible -- this works
f.confirmed true ...
2
votes
1answer
240 views
Rails 3.1, FactoryGirl or Factory?
I am trying to build tests using specs, and I am confused about using FactoryGirl or Factory,
I have FactoryGirl 2.3.2 installed, as I have gem "factory_girl_rails", "~> 1.2" in GemFile
The ...
5
votes
2answers
4k views
FactoryGirl, why I get already registered or uninitialized constant?
I am trying to do a simple test for my model Course, I have wrote this factory:
FactoryGirl.define do
factory :course do
name 'How to be happy ?'
end
end
the course_spec.rb:
require ...
4
votes
1answer
102 views
I want to change the location of my factories, how can I make Rails know the new location when generating?
I'm using rails 3.2.0.rc1 and factory_girl_rails
I want the location of my factories to be RAILS_ROOT/factories instead of RAILS_ROOT/specs/factories
When I use the Rails generators, I know it ...
0
votes
1answer
209 views
RSpec tests failing when dev and prod work - RSpec quirk, virtual attribute, or form issue?
I'm writing a basic application using RoR, and I'm testing with RSPec (and Factory Girl). My app is working on both Dev and Prod, but I can't get all of my RSpec tests to pass. I suspect this is some ...
0
votes
1answer
84 views
Getting two users from seeds.rb file when I only want one
If this is the only line I have creating a user in my seeds.rb file:
jim = Factory :user, :name => "Jim Jones", :email => 'jim@test.com'
How come I end up with two users, one named Jim, and one ...
1
vote
1answer
414 views
Many to Many Polymorphic Models - Setting up factory girl
I was looking around and have set up a polymorphic many to many model which seems to work. I set it up like so:
class Category < ActiveRecord::Base
has_many :category_categoryable
has_many ...
2
votes
2answers
308 views
Factory_girl_rails and postgres date format?
How do I format a date to put it in a factory_girl_rails factory eg:
Factory.define(:profile) do |t|
t.length 110
t.shipdate 1993-04-06
end
If it matters, I'm using postgressql and ...
3
votes
2answers
2k views
undefined method `stringify_keys' while using Factory Girl
I have the following block of code in my User_spec.rb:
@user = { username:'newuser',
email:'new@user.com',
fname:'new',
lname:'user',
password:'userpw',
...
0
votes
1answer
1k views
passing params to post :create request ruby-on-rails-3.1, Rspec, factory-girl
I am trying to write a controller spec for creating a purchase with a purchase line item. The purchase gets created just fine with all the attributes I give it but the purchase line item is not ...
1
vote
1answer
6k views
Set session variable in rspec for controller
There is a session variable used in controller for create. How to set the session variable for rspec test?
Here is the method create in controller w/ session[eng_dh] :
def create
if ...
0
votes
1answer
1k views
using factory girl, rspec2 and rails 3.1.0
Currently I'm trying to integrate factory girl for my testing framework. I was successfully able to integrate factory girl with my rails 3.1.0 app and its working fine.
I'm using
rspec2
factory ...
0
votes
1answer
82 views
How to generate multiple asscoated records for the same parent record in factory_girl?
Here is the definition for model user and user_level. A user has many user levels and a user level belongs to a user.
Factory.define :user do |user|
user.name "Test User"
...
0
votes
1answer
196 views
Model passes validation of :presence => true and still nil in database
user_type is a column in user model and it has to be :presence => true. It rejects in rspec when passing a nil to user_type. However the factory_girl can store a nil user_type into the field with ...
0
votes
3answers
1k views
rails 3.1.rc6 + factorygirl+ devise + spec2 => undefined method `Factory' for #<RSpec::Core::ExampleGroup::
my gem file looks like
source 'http://rubygems.org'
gem 'rails', '3.1.0.rc6'
gem 'sqlite3'
gem 'devise'
gem 'will_paginate'
gem 'therubyracer'
group :assets do
gem 'sass-rails', " ~> 3.1.0.rc"
...
9
votes
2answers
6k views
How to set up factory in FactoryGirl with has_many association
Can someone tell me if I'm just going about the setup the wrong way?
I have the following models that have has_many.through associations:
class Listing < ActiveRecord::Base
attr_accessible ...
...
0
votes
1answer
579 views
Capybara does not find the text that is actually there!
In my actual project I use the following gems for testing:
capybara from git://github.com/jnicklas/capybara.git in revision 6641fddcfc337a3ddaa84ac59272e884090332c3
rails (3.1.0.rc5) (and its ...
3
votes
3answers
683 views
ActionDispatch::ClosedError when testing Rails 3.1 model creation (RSpec/Cucumber)
I am creating a web application with Ruby on Rails 3.1 (RC1). I am using Factory Girl, RSpec and Cucumber (with Capybara) for testing, but I am experiencing unexpected raised ...