Tagged Questions
Test-unit is a unit testing library in Ruby. It was part of the standard library in Ruby 1.8, and there's a compatibility layer in the standard library of Ruby 1.9.
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
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 ...
8
votes
10answers
6k views
In Ruby's Test::Unit::TestCase, how do I override the initialize method?
I'm struggling with Test::Unit. When I think of unit tests, I think of one simple test per file. But in Ruby's framework, I must instead write:
class MyTest < Test::Unit::TestCase
def ...
6
votes
1answer
68 views
How to test Ruby scripts which offer functionality between runs?
What's a good method for unit testing which test a script's ability to maintain correct data between executions--after a script is terminated with Ctrl-C and then re-run? Are there any tests for ...
6
votes
2answers
438 views
ruby test unit gem doesn't show dots for passed test
Ruby test unit gem doesn't show dots for passed test. I'm running on Ubuntu 11.04 .
It shows 'E' and 'F' for failure, but nothing for pass. This problem dissapears if I comment gem 'test-unit' ...
6
votes
2answers
1k views
Global setup and teardown blocks in Test::Unit
What's the best way to have a setup run before every method in an entire test suite (not just one test class)?
Rspec allows you to define global before and after blocks. Is there a clean comparable ...
5
votes
4answers
747 views
Rspec vs. TestUnit
I'm beginning the planning phase of creating a testing suite for my rails 3.0.8 application. I'm trying to decide on which testing framework/gems to use. Normally I prefer to stick to Rails convention ...
5
votes
2answers
290 views
Test::Unit Rails - How to assert one number is greater than another one?
I am writing my first unit tests with Test::Unit and I have reached a point where I need to compare two numbers. Much to my surprise, I have discovered that none of the following were available:
...
5
votes
1answer
394 views
how do you assert an exception from another ruby module is thrown? (using assert_throws)
I'm trying to write code like this:
assert_throws(:ExtractionFailed) { unit.extract_from('5 x 2005')}
ExtractionFailed is a trivial subclass of Exception, and under test/unit, I'm trying to assert ...
4
votes
2answers
96 views
Ruby on Rails: Best way to test a failed call to a third party API
I call a third party web service right now as part of my application. I am using the RestClient gem in order to do this. There are a ton of tools available to do the same thing, so that should not ...
4
votes
2answers
305 views
How can I tell Rails to use RSpec instead of test-unit when creating a new Rails app?
I have test-unit installed and rspec installed (along with -core, -expectations, -mocks and -rails version 2.6.x). When I run the command rails new foo, it uses test-unit to generate the test stub ...
4
votes
1answer
167 views
Error when using 'omit' feature in Test Unit 2.3.0
I'm a bit stumped by my issue. I am using ruby 1.8.7, rails 2.3.2. I am attempting to using the 'omit' feature in Test Unit 2.3.0. Here is my test:
def test_create_reward_program
omit("Pending")
...
4
votes
1answer
147 views
What's the best strategy for adding tests to an existing rails project?
There is an existing project that is already deployed in production. We want to add some tests on it (the sooner the better) and I have to choose between going the BDD way (rspec/cucumber) or the TDD ...
4
votes
2answers
1k views
ruby Test::Unit Command line options?
When running tests in Ruby's unit::test framework, is there a really easy way to specify, from the command-line, that only one test should be run (that is, specify the test class and test member ...
3
votes
1answer
51 views
What makes a good failure message for testunit or other nunit style frameworks?
In Ruby's test/unit, and other such nunit style frameworks, what makes a good failure message?
Should the failure message merely describe how the expected value does not match the expected value?
...
3
votes
1answer
98 views
What is the best practice for organizing Ruby test folder structure?
In Java typically you would create two source folders src and test with an identical package hierarchy.
In Ruby do you just put all the tests in the same folder as the class under test? Or do you ...
3
votes
2answers
95 views
can't get test unit startup to work in ruby 1.9.2
I am using Ruby 1.9.2 (ruby -v yields :ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-linux]), and I am trying to get this to work:
require 'test/unit'
class TestStartup < ...
3
votes
1answer
84 views
ArgumentError: assertion message must be String or Proc using assert_select
I'm writing a controller test for a rails 3.1 app using testunit 2.4.0.
I want to assert that a certain heading does not appear on the page.
I'm using assert_select like this:
assert_select 'h1', ...
3
votes
2answers
67 views
How can I test only a method with Ruby's Test::Unit?
Imagine I have a test like this:
class MyUnitTest < Test::Unit::TestCase
def test_first
# test code here
end
def test_second
# test code here
end
def test_third
# test code ...
3
votes
3answers
271 views
How do I stub an http request globally with Test::Unit?
How do I stub an http request, like this one to the twitter api below, on a global scope so it's valid for all tests in a Test::Unit suite?
stub_request(:get, ...
3
votes
2answers
94 views
How do I execute a single test using Ruby test/unit?
Instead of running all the test cases automatically, is there any way to execute a single test under ruby test/unit framework. I know I can achieve that by using Rake but I am not ready to switch to ...
3
votes
1answer
780 views
How to skip certain tests with Test::Unit
In one of my projects I need to collaborate with several backend systems. Some of them somewhat lacks in documentation, and partly therefore I have some test code that interact with some test servers ...
3
votes
3answers
243 views
How to include unit tests in a ruby module?
I'm trying to include the unit tests for a module in the same source file as the module itself, following the Perl modulino model.
#! /usr/bin/env ruby
require 'test/unit'
module Modulino
def ...
3
votes
6answers
631 views
Detecting overwriting of ruby test methods
If you write a test class like
class MyTest < Test::Unit::TestCase
def setup
end
def test_1
flunk
end
def test_1
assert true
end
end
the first test_1 is ignored. ...
2
votes
1answer
27 views
how to write and inherit from an abstract subclass of ActionController::TestCase
I have a bunch of Rails 3.1 controllers which all have very similar testing requirements. I have extracted out the common code (all Test::Unit style), e.g. the following three tests are completely ...
2
votes
2answers
165 views
Missing progress dots and 0% passed in rails test output (Test Unit, Rails 3.1 rc6, Ruby 1.9.2)
My tests all pass and my results look like this:
Started
Finished in 361.988408 seconds.
479 tests, 1017 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications
0% passed
Why ...
2
votes
2answers
72 views
Are there any good ruby testing traceability solutions?
I'm writing some ruby (not Rails) and using test/unit with shoulda to write tests.
Are there any gems that'll allow me to implement traceability from my tests back to designs/requirements?
i.e.: I ...
2
votes
2answers
121 views
Rails 3 - How do I test a controller module?
I have 3 controllers which include the same module.
How can I test with Test:Unit the module in one place ?
Should I write 3 identical functional tests for each controller (not DRY) ?
...
2
votes
1answer
279 views
How to run multiple Rails unit tests at once
I often run the various test groups like:
rake test:units
rake test:functionals
I also like to run individual test files or individual tests:
ruby -Itest test/unit/file_test.rb
ruby -Itest ...
2
votes
6answers
909 views
How to color unit tests with lib minitest or Test:Unit?
I would like to have unit tests output color in my dev environment. However, I can't make it work on Linux (Debian and Ubuntu). When I include the following libs:
require 'minitest/autorun'
require ...
2
votes
1answer
147 views
Checking for test result in Ruby test/unit teardown method
Is it possible to check the result of a Ruby Test/Unit in the teardown method?
I am using Ruby with Test/Unit, WATIR and Webdriver to test a web application and would like to grab a screenshot in the ...
2
votes
2answers
156 views
How do you “nest” or “group” Test::Unit tests?
RSpec has:
describe "the user" do
before(:each) do
@user = Factory :user
end
it "should have access" do
@user.should ...
end
end
How would you group tests like that with ...
2
votes
1answer
233 views
Rails - How to simply mock current_user (OmniAuth) on Test::Unit?
I am trying to figure out how can I mock (simply) current_user inside my unit tests in Rails? (I am using Test::Unit). I tried to look on Google and StackOverflow but nothing really helpful!
Any ...
2
votes
1answer
426 views
Rails 3 Capybara error
I'm trying to get Capybara to work with rails 3 (and test unit) but when I try to run rake test:integration I get an error:ArgumentError: @request must be an ActionDispatch::Request
The test:
...
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
1answer
166 views
How do I run a Test::Unit suite to completion with a tally of tests/failures?
I've inherited a large suite of Test::Unit tests, and one of my first tasks is to have the suite run to completion rather than exit after the first test failure.
I'm currently rescuing ...
2
votes
2answers
85 views
Why is this instance variable nil when accessed in a different unit test?
require 'rubygems'
require 'test/unit'
class Thing
attr_accessor :foo
def set_stuff
@foo = 'bar'
end
end
class ThingTest < Test::Unit::TestCase
def setup
@thing = Thing.new
end
...
2
votes
1answer
132 views
How to unit test for exception in threads
I need to unit test that an exception in raised in code like:
def test
assert_raise Timeout::Error do
Thread.new {
raise Timeout::Error
}
end
end
How to get this working?
2
votes
1answer
285 views
How do I inherit abstract unit tests in Ruby?
I have two unit tests that should share a lot of common tests with slightly different setup methods. If I write something like
class Abstract < Test::Unit::TestCase
def setup
@field = ...
2
votes
3answers
500 views
Can rails test speed be increased?
I'm a recent convert to TDD but as my codebase grows in size and complexity, I find myself waiting longer and longer periods for the framework to load every time I want to run a test.
I am aware of ...
2
votes
1answer
616 views
Testing routes with host constraints via assert_routing in Rails
I have a route which I'm using constraints to check the host and then a route which is essentially the same but without the host restriction (these are really namespaces but to make things simple this ...
2
votes
2answers
202 views
Ensure teardown runs in Test::Unit::TestCase?
I'm using Test::Unit::TestCase to write some unit tests. Currently, I have a setup function that moves and modifies some fixture files and folders on disk. (This is a necessary evil at the moment.) ...
2
votes
2answers
129 views
Have ruby Unit::Test speak the results of the test
I've been using the built-in OSX 'say' command to signal the end of long running tests. It's easy and convenient.
I'd like to make it speak the last line of the results which says "6 tests, 18 ...
2
votes
2answers
341 views
In Ruby, how to I control the order in which Test::Unit tests are run?
For example, when these tests are run, I want to ensure that test_fizz always runs first.
require 'test/unit'
class FooTest < Test::Unit::TestCase
def test_fizz
puts "Running fizz"
...
2
votes
2answers
292 views
Test modules with Test::Unit
I encountered a problem when trying to test a module with Test::Unit. What I used to do is this:
my_module.rb:
class MyModule
def my_func
5 # return some value
end
end
test_my_module.rb:
...
1
vote
2answers
50 views
stuck in rvm hell trying to get a simple rspec running
Ruby Settings From terminal
% ruby -v
ruby 1.9.2p180 (2011-02-18 revision 30909) [i686-linux]
=> ~/ruby/grounded/test
% where ruby
/home/mike/.rvm/rubies/ruby-1.9.2-p180/bin/ruby
...
1
vote
1answer
34 views
Store and Call Ruby Method without using .method/.call
I'm adding unit tests to a large batch of code and am looking for a way to insert fake methods in for testing purposes. The problem is that, as far as I know in Ruby, to pass a method in one must use ...
1
vote
1answer
17 views
See if an Exception's message matches a known String in Ruby via Test::Unit
Suppose I have a method written in Ruby that I am unit testing via Test::Unit. This method can raise a SystemExit for more than one reason, but uniquely identifies the reason it throws it in the ...
1
vote
0answers
115 views
spork-testunit no tests run
New to Ruby so please bear with me... I am using JRuby on Windows, spork-0.9.0.rc9. I am able to use rake test fine but when I try with testunit using testdrb my tests are not run. For example:
...
1
vote
1answer
83 views
Test::Unit should equivalent of RSpec should_receive
I am writing some unit tests for my Ruby on Rails application. I would like to test that my model received a message to a particular method. In RSpec this is done with the should_receive incantation.
...