0
votes
4answers
275 views

shoulda factory girl error Couldn't find model without an ID

Good day, i get this error from ActiveRecord::RecordNotFound: Couldn't find User without an ID my model has_many :objects, class_name: 'OrderObject', dependent: :destroy belongs_to :user ...
0
votes
1answer
153 views

rspec factory girls with shoulda uniqueness test error

Good day, currently i'm struggling with this error. Failure/Error: FactoryGirl.create(:subscription) NoMethodError: undefined method `attribute_list' for "AdvtCategories":String i can't ...
1
vote
0answers
183 views

FactoryGirl + Shoulda NoMethodError: undefined method `featured='

I have the following test failing 2) Dvd when is featured Failure/Error: subject { Factory(:featured) } NoMethodError: undefined method `featured=' for #<Dvd:0x007f9cdb50e400> # ...
1
vote
2answers
186 views

Rspec & FactoryGirl: Is it really assigning the user id to my model?

Here are my Factories: spec/factories.rb FactoryGirl.define do factory :user do username 'user1' time_zone 'Eastern Time (US & Canada)' email 'user@example.com' ...
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' ...
1
vote
2answers
558 views

FactoryGirl WARNING Sequence#next is deprecated

I am using FactoryGirl with Shoulda to test my application. Actually my code works fine, but I am getting warning that #next method was deprecated. I can't find solution how to avoid this. I can't ...
5
votes
3answers
3k views

no such file to load — rspec/matchers - rspec-rails, shoulda, cucumber, factory girl, Rails2.3.10

I've inherited an old Rails2.3 app. It's very complex and has (shock, horror) no tests whatsoever. I'm used to rspec and cucumber so I thought I'd start working on getting specs and features defined ...
0
votes
1answer
157 views

rails3, rspec2 ActiveRecord#changes error in specs

I'm upgrading my rails 2 app to rails 3. I use rspec, shoulda and factory girl in the test suite. One particular pattern is causing an error I'm having a really hard time both researching and ...
0
votes
1answer
388 views

how do I set up factory_girl in my test_helper.rb file to use with shoulda?

I have the following: 1 ENV["RAILS_ENV"] = "test" 2 require File.expand_path(File.dirname(__FILE__) + "/../config/environment") 3 require 'test_help' 4 require 'shoulda' 5 require ...
0
votes
1answer
413 views

Failure of functional test for 'create' using should_redirect_to

I have a problem trying to use 'shoulda' with 'factory_girl' for creating a functional test for 'create' in a Rails application. I created a simple project, scaffolded user, added 'shoulda' ...
1
vote
1answer
120 views

Association not finding created objects in tests

I have following models in my app: class Game < ActiveRecord::Base has_many :players has_many :villages, :through => :players end class Village < ActiveRecord::Base belongs_to ...
3
votes
1answer
2k views

Factory Girl with has many relationship (and a protected attribute)

I have this kind of relation: class Article < ActiveRecord::Base has_many :comments end class Comment < ActiveRecord::Base belongs_to :article attr_protected :article_id end The ...
1
vote
1answer
135 views

Action works, but test doesn't (Shoulda)

I am trying to test my update action in Rails with this: context "on PUT to :update" do setup do @countdown = Factory(:countdown) @new_countdown = Factory.stub(:countdown) put :update, ...
0
votes
1answer
1k views

Shoulda testing format

I am trying to test a model's attributes for formatting with this: # myapp/test/unit/comment_test.rb require 'test_helper' class CommentTest < ActiveSupport::TestCase should_belong_to :article ...
0
votes
2answers
3k views

Rails shoulda and factory_girl setup

I have installed both shoulda and factory_girl, I can run shoulda just fine, but when I add this: require 'factory_girl' Factory.define :user do |u| u.mail 'test@example.com' u.pass 'secret' end ...
1
vote
0answers
813 views

How do I setup and utilize Shoulda, Factory_Girl, and Cucumber in a Rails 3 application?

I'm able to get my Gemfile how I like it: # Gemfile source "http://gemcutter.org" gem "rails", :git => "git://github.com/rails/rails.git" git "git://github.com/rails/arel.git" git ...
13
votes
1answer
7k views

when does factory girl create objects in db?

i am trying to simulate a session using factory girl/shoulda (it worked with fixtures but i am having problems with using factories). i have following factories (user login and email both have ...
1
vote
1answer
1k views

Rspec + Shoulda + FactoryGirl = undefined method `reflect_on_association'

I have Rspec + Shoulda + FactoryGirl and I am receiving the following error when attempting to call Shoulda's have_many or belong_to methods. All Shoulda methods used in the "validations" group work ...
0
votes
1answer
359 views

Authlogic: logging-in twice on the same test

Is there any way to logout and login another user when testing with Authlogic? The following test case just fails class MessagesControllerTest < ActionController::TestCase setup ...
11
votes
1answer
2k views

ActiveSupport::TestCase vs Test::Unit::TestCase when unit testing rails

I recently noticed my test database is not being cleaned up after my tests run if my tests subclass Test::Unit::TestCase. If my tests subclass ActiveSupport::TestCase, everything is cleaned up ...
5
votes
4answers
932 views

Shoulda + FactoryGirl: Can I make my tests faster?

I'm looking for a way to speed up my Shoulda + FactoryGirl tests. The model I'm trying to test (StudentExam) has associations to other models. These associated objects must exist before I can create ...
1
vote
3answers
2k views

testing REST with shoulda and factory_girl - destroy

i'm developing test for REST using shoulda and factory_girl. Code below context "on :delete to :destroy" do setup do @controller = NewsArticlesController.new @request = ...
15
votes
13answers
12k views

Setup Factory Girl with Test::Unit and Shoulda

I'm trying to set up Factory Girl with Test::Unit and Shoulda in Ruby on Rails. I have installed the gem, created my factory file under the test/factories directory, and created my spec file under the ...