Tagged Questions

Shoulda, developed by thoughtbot, provides a method for organizing tests. As described by its creators, "[shoulda] Makes tests easy on the fingers and the eyes"

learn more… | top users | synonyms

29
votes
7answers
9k views

Why should I use RSpec or shoulda with Rails?

I am setting up a rails app and I just finished making some unit tests and my friend said that apparently fixtures are no longer cool and people are now using RSpec or shoulda. I was wondering what ...
28
votes
5answers
12k views

How to run Rails console in the test environment and load test_helper.rb?

The background: I'm having some problems with Thoughtbot's "Factory Girl" gem, with is used to create objects to use in unit and other tests. I'd like to go to the console and run different Factory ...
13
votes
13answers
8k 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 ...
12
votes
2answers
2k views

Testing devise with shoulda

I'm having some difficulties in testing devise with shoulda: 2) Error: test: handle :index logged as admin should redirect to Daily page. (Admin::DailyClosesControllerTest): NoMethodError: undefined ...
12
votes
4answers
1k views

Is Test::Unit still relevant in rails?

I am learning Rails the age old way. By reading Agile Web Development with Rails (3rd Edition) as a starting point. I am currently in the chapter that teaches Testing. I am also aware of other BDD ...
10
votes
3answers
2k views

How to run a single shoulda context test in ruby Test::Unit framework

I can typically test a regular Test::Unit method using the following commandline syntax for a method "delete_user_test": ruby functional/user_controller_test.rb -n delete_user_test Now when I'm ...
9
votes
3answers
4k views

How do you specify POST params in a Rails test?

Working with Test::Unit and Shoulda. Trying to test Users.create. My understanding is that Rails forms send params for an object like this: user[email] Which turns into hash in your action, right? ...
7
votes
5answers
699 views

Rspec, shoulda, validate_uniqueness_of with scope and wrong error message

I have following Rspec test: describe Productlimit do before(:each) do @productlimit = Factory.create(:productlimit, :user => Factory.create(:user)) end subject { @productlimit } ...
7
votes
2answers
1k views

Rspec, shoulda and spork does not work together

when I run rspec spec/models result is OK. But when I use spork, every test where shoulda macros (like it { should validate_presence_of(:title) } is used FAILS with error like: undefined method ...
7
votes
4answers
1k views

RSpec vs. Shoulda?

I am new to the unit testing scene; I have only been using unit tests for about 2 months now. When I unit test in Ruby I currently follow the TDD style and use Test::Unit::TestCase. I have also read ...
6
votes
3answers
1k views

rake not running unit tests

I've upgraded my app from using config.gem to a Gemfile with bundler and have noticed that my unit tests have now stopped running. It's a bit strange and I'm not entirely sure where to start looking. ...
6
votes
1answer
2k 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 ...
6
votes
1answer
1k 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
3answers
579 views

In Rails controller tests, Is there a way to simulate a specific remote IP?

Some functionality in my app works differently depending on the client's IP address. Is there a way to test that in Rails functional tests? I'm using Test::Unit and Shoulda.
5
votes
4answers
607 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 ...
5
votes
8answers
880 views

BDD on Rails - Is the community more behind Shoulda or RSpec?

For a new application I want to start dabbling in BDD and I'm trying to decide between using RSpec or Thoughtbot's Shoulda. I like the macros that Shoulda uses, and the fact that it doesn't seem to ...
5
votes
5answers
1k views

What's the main difference between cucumber and shoulda?

How would you make a decision between cucumber and shoulda if you were about to choose a testing framework? What differentiates these two frameworks primarily?
5
votes
3answers
1k views

Shoulda testing workflow from the trenches

Everyone is talking about TDD (BDD) in Rails (and not just Rails) development world today. It's easy to find plenty of good general information about it, there are quite a few tools you can use for ...
4
votes
1answer
316 views

How to use shoulda matchers to test a polymorphic assoication?

I'm using shoulda-matchers with rails and I'm creating a model called "comments" and another model called "post". Comments is polymorphic. When I test with shoulda matchers in post like this it ...
4
votes
2answers
489 views

How to test scopes?

tried to find but with no success. Just wondering how could I test scopes in Rails 3. Could be using rspec, shoulda or just a test unit. Thanks. Actually, I trying this way, but it's not complete ...
4
votes
1answer
366 views

Adding custom shoulda matchers to TestCase

After using shoulda it is very clear that shoulda no longer uses macros (They are all deprecated for the preferred matchers) For example: should_allow_custom_test is deprecated for the following: ...
4
votes
2answers
1k views

NameError: uninitialized constant Test::Unit::AssertionFailedError when upgrading to rails3

I'm trying to upgrade my rails application to Rails3. When I run functional tests, I get a lot of NameError: uninitialized constant Test::Unit::AssertionFailedError errors. But unit tests and website ...
4
votes
2answers
148 views

Print a List of All Tests in a Rails App

Is there an easy ruby or rails command to get a list of all the tests in an application? I use Shoulda primarily, but if there's a ruby solution regardless of test suite that would work too.
3
votes
1answer
110 views

Unit testing a module that is included in ActiveRecord models

I have a module like this (but more complicated): module Aliasable def self.included(base) base.has_many :aliases, :as => :aliasable end end which I include in several models. ...
3
votes
1answer
357 views

How do I test that a before_filter will redirect for all Rails controller actions?

I have a fairly typical require_no_user as a before_filter in one of my controllers. I need to test that a logged in user is redirected by this filter if they try to access any of the controller's ...
3
votes
2answers
575 views

How can I mute Rails 3 deprecation warnings selectively?

I am upgrading a Rails 2 to Rails 3 application (code not written by me). The (well tested code) uses shoulda and Test::Unit, and extensively uses the macros should_create and should_change. I ...
3
votes
2answers
427 views

rspec and shoulda - complementary or alternatives?

I've used shoulda for a while, and I've read and played with rspec. I have not done an in depth compare and contrast. But it seems to me like there is some overlap between the two, but that they are ...
3
votes
1answer
672 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 ...
3
votes
1answer
334 views

Shoulda rspec matchers :on => :create

I am using some of the Shoulda rspec matchers to the test my model, one of them being: describe Issue do it { should_not allow_value("test").for(:priority) } end My problem with this is that my ...
3
votes
2answers
995 views

Shoulda vs Remarkable for rspec and rails

I'm using rspec and cucumber for BBD. Now I'm migrating to rails 3 and rspec 2 and as I could see both of frameworks (shoulda and remarkable) support rails 3 and rspec 2. I have never used shoulda or ...
3
votes
2answers
1k views

Autotest, Shoulda, Ruby - The Setup?

I am trying to get the whole setup working with Autotest/Growl/Shoulda on my Mac to test a gem I'm working on for Authlogic. I've used RSpec in the past quite a bit but would like to switch to ...
3
votes
2answers
712 views

Should I mock my model in rails controller tests?

I am finding holes in my coverage because I have been mocking my models in controller examples. When I remove a model's method upon which a controller depends, I do not get a failure. Coming from ...
2
votes
2answers
172 views

Shoulda superclass mismatch on unit tests

Trying to write a simple unit test using shoulda and rails 3. test/unit/user_test.rb class UserTest < Test::Unit::TestCase should validate_presence_of(:password, :on => :create) should ...
2
votes
2answers
891 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 ...
2
votes
1answer
256 views

Is there a good way to test `before_validation` callbacks with an `:on` argument in Rails?

I have a before_validation :do_something, :on => :create in one of my models. I want to test that this happens, and doesn't happen on :save. Is there a succinct way to test this (using Rails 3, ...
2
votes
6answers
116 views

What's the use of writing tests matching configuration-like code line by line?

I have been wondering about the usefulness of writing tests that match code one-by-one. Just an example: in Rails, you can define 7 restful routes in one line in routes.rb using: resources :products ...
2
votes
1answer
460 views

Integration tests with webrat and Rails3

I'm upgrading a Rails 2.3.5 app to Rails 3.0.3. But my integration tests aren't working. I'm getting this error: NoMethodError: undefined method `content_type' for nil:NilClass The line to blame is ...
2
votes
1answer
413 views

Shoulda Test in Rails 3: should respond_with :success

I have some troubles with testing in Rails 3. I'm currently upgrading a Rails2 app to Rails3. I'm using shoulda for testing. In my functional tests, I'm testing with shoulda, that a GET should respond ...
2
votes
1answer
350 views

How to create unit test for Paperclip::Geometry?

I'm writing unit test for a image uploader that uses paperclip. It's being bumpy and I was slowly moving thought the hurdles till I got stuck in the paperclip::geometry class Here is my code below ...
2
votes
1answer
472 views

Setting up Shoulda under Test/Unit in Rails 3 (3.0.3)

I have posted this in other places but no response. Trying to get Shoulda working inside Test/Unit in Rails 3.0.3 (1.9.2). When I try to run the test (copied below), I get this error: ...
2
votes
0answers
169 views

Is shoulda destroying my backtraces?

I have a test more or less like this: class FormDefinitionTest < ActiveSupport::TestCase context "a form_definition" do setup do @definition = SeedData.form_definition # ... ...
2
votes
1answer
672 views

Mocking/Stubbing an Application Controller method with Mocha (Using Shoulda, Rails 3)

While writing functional tests for a controller, I came across a scenario where I have a before_filter requesting some information from the database that one of my tests requires. I'm using ...
2
votes
1answer
378 views

shoulda should “be valid” do fails with “'handle_matcher': undefined method 'matches?'”

I'm trying out 'shoulda' on top of rspec (rails 3) with the following spec: require 'spec_helper' describe Article do should "be true" do assert true end end and it fails with ...
2
votes
3answers
275 views

Get HTTP response Using Shoulda Ruby on Rails

I'm migrating over to shoulda from rspec and I can't seem to get access to the http response. Can someone point out what I may be doing wrong? context "doing somethin" do setup do get ...
2
votes
1answer
253 views

Current trend in testing models in a rails3 + datamapper application

What is the current trend for testing models in a Rails3+DataMapper application. I want to use RSpec but sorely miss the concise testing provided by shoulda macros. Question - Is there a way of ...
2
votes
3answers
2k views

shoulda macros with rspec2 beta 5 and rails3 beta2

I've setup Rspec2 beta5 and shoulda as following to use shoulda macros inside rspec model tests. ================= Update 2011-Feb-18 Now we can use shoulda-matchers out of the box. Just add gem ...
2
votes
1answer
260 views

How to repeat a test case without duplicate code?

I'm using shoulda with Ruby on Rails, and I have the following test cases: class BirdTest < Test::Unit::TestCase context "An eagle" do setup do @eagle = Eagle.new end ...
2
votes
1answer
291 views

Shoulda on Rails - should render_with_layout deferred

I would appreciate if someone could help/explain the following please. I am trying to test a controller with shoulda to see if a correct layout is used. The method should_render_with_layout throws a ...
2
votes
3answers
1k views

uninitialized constant Test::Unit::TestResult::TestResultFailureSupport

I get the error in subj when I'm trying to run specs or generators in a fresh rails project. This happens when I add shoulda to the mix. I added the following in the config/environment.rb: ...
2
votes
3answers
680 views

Tests pass using “autotest” but not “rake test” using Authlogic

My tests fail when doing "rake test:functionals" but they pass consistently using autotest. The failing tests in question seems to be related to Authlogic not logging in the user properly when using ...

1 2 3