Tagged Questions
a testing framework that comes in the standard library of Ruby 1.9.
21
votes
1answer
2k views
How do I add gem 'minitest' to my test helper?
I am new to Ruby on Rails and Testing. When I run 'rake test' I get the following error
/Users/jarvis/.rvm/gems/ruby-1.9.2-p180@rails3tutorial/gems/rack-1.3.4/lib/rack/backports ...
11
votes
4answers
825 views
Rails: How to set up MiniTest?
I'm a fairly novice tester, but have been trying to get better at TDD in Rails.
RSpec works great, but my tests are pretty slow. I've heard that MiniTest is a lot faster, and the MiniTest/Spec DSL ...
9
votes
5answers
1k views
Is there a consensus about test frameworks for Ruby 1.9.x?
A two-parter with a quick intro. Intro: I'm coming to Ruby from Perl, and I'm a bit lost among the test framework choices. I understand that there is probably no single, all-around best choice, but I ...
8
votes
1answer
1k views
Getting Started with MiniTest and Rails
I want to switch an existing rails application from rspec to minitest starting with the models. Therefore I created a folder test. Inside there I created a file named minitest_helper.rb with the ...
4
votes
2answers
263 views
Capybara Acceptance DSL with MiniTest::Spec?
The readme for Capybara (see Using Capybara with MiniTest::Spec) says that I can do this if I include the module correctly, but it doesn't give any illustrative examples of how... I've tried including ...
4
votes
1answer
187 views
How parallel are parallel tests in Ruby 1.9.3?
In Ruby 1.9.3, you're allowed to run multiple test cases at once. I'm not sure whether this is a feature of the language, the minitest library, or a feature of YARV, so apologies for any bad ...
4
votes
1answer
410 views
How do I stub things in MiniTest?
Within my test I want to stub a canned response for any instance of a class.
It might look like something like:
Book.stubs(:title).any_instance().returns("War and Peace")
Then whenever I call ...
4
votes
1answer
79 views
What exactly is the :method: notation supposed to do for ruby docs?
Minitest has a bunch of methods defined like so:
##
# :method: must_equal
# See MiniTest::Assertions#assert_equal
##
# :method: must_include
# See MiniTest::Assertions#assert_includes
...
4
votes
2answers
1k views
Is it possible to run a single test in MiniTest?
I can run all tests in a single file with rake test TEST=path/to/file.rb, however, if I want to run just one test in that file, how would I do it?
I'm looking for similar functionality to rspec ...
3
votes
2answers
96 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
61 views
How do I make interrupt stop Minitest?
In Ruby 1.9.1, I find that control c (interrupt) only kills a single unit test, and you can't stop the running of the entire testing program that way.
By contrast, under test/unit in Ruby 1.8, ...
3
votes
3answers
95 views
Graphical user visualization for Ruby testing
What kind of (small) tool can we use in order to render a graphical result from testing?
Actually, I would like to display a graphic instead of this test (for example):
Finished in 3.44 seconds
5 ...
3
votes
2answers
623 views
Before/After Suite when using Ruby MiniTest
Is there an alternative to RSpec's before(:suite) and after(:suite) in MiniTest?
I suspect that a custom test runner is in order, however I cannot imagine it is not a common requirement, so somebody ...
3
votes
2answers
162 views
How to test a script that generates files
I am creating a Rubygem that will let me generate jekyll post files. One of the reasons I am developing this project is to learn TDD. This gem is strictly functional on the command line, and it has to ...
3
votes
3answers
745 views
Has anyone used Minitest::Spec withing a Rails functional test?
The spec library in Minitest is great. I've been able to use it within Rails unit tests no problem. However, Rails functional test inherit from ActionController::TestCase which provides instance ...
2
votes
1answer
87 views
Functional test with Minitest and authentication
I'm trying to do functional test but I don't know how to deal with cookies.
I'm using Ruby and Minitest to do functional test of controllers.
But to run tests in controllers, first I need to ...
2
votes
6answers
915 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
1k views
how to run all the tests with minitest?
I downloaded source of some project. Found a bug. Fixed it.
Now I want to run tests to find out, if I haven't break anything.
Test are in minitest DSL.
How do I run them all at once?
Searched for ...
2
votes
1answer
493 views
System rake test task doesn't run my tests
I'm sure I'm doing something naive or stupid, I'm just not sure what it is.
I'm writing a simple library for parsing data URIs. Being so simple, I figured I'd go ahead and just give ruby-1.9's ...
2
votes
1answer
411 views
Is there an equivalent to RSpec's before(:all) in MiniTest?
Since it now seems to have replaced TestUnit in 1.9.1, I can't seem to find an equivalent to this. There are times when you really just want a method to run once for the suite of tests.
For now I've ...
1
vote
0answers
35 views
Why does minitest throw OptionParse::InvalidOption when rails generate is run with options?
Whenever the Rails generator is run with one or more options, mintiest raises OptionParse::InvalidOption.
I'm using Rails 3.1, Ruby 1.9.2-p290 and mintiest 2.10.0.
The generate command will ...
1
vote
0answers
93 views
Migrating from RSpec to Minitest::Spec?
Is there a strategy or set of steps to follow to migrate from RSpec 2 to MiniTest::Spec? I'd like to take a look at doing this for a large project but I'm not sure where to begin.
1
vote
1answer
50 views
rollback changes created by minitest unit test
I'm writing a test case in Minitest that creates a database entry. After the test is run, all changes that the test did should be rolled back. What is a good way to achieve this?
require ...
1
vote
3answers
734 views
What do I do with this error when I run tests in rails?
using ruby1.9.2 rails3.1.0
I am working from my netbook, so it is not my usual dev environment. I cloned a repo that I was working with on my desktop early this week. Now when I run rake test I get ...
1
vote
1answer
144 views
Ruby: Minitest/spec and BDD Gherkin
It seems that I cannot find much documentation on Minitest/spec so I was wondering if somebody could help me figure out how to do what I need to do. Basically I want to run tests on all my classes ...
1
vote
2answers
133 views
Multiple tests with minitest
I have an app with some specs written into minitest. As usual, I start them using rake.
Because some times I got a random results, my specs can pass one time, and fail an other time.
In this case, I ...
1
vote
0answers
23 views
How to increase MiniTest timeout threshold?
I'm switching to MiniTest for a gem of mine and getting a Timeout::Error for certain examples. Due to some external deps, when I request a connection against the server, it's being returned after a ...
1
vote
1answer
260 views
Ruby Minitest: Suite- or Class- level setup?
Using the built-in Ruby Minitest framework, is there a way to run some code once before the entire suite runs, or even once before an entire TestClass runs? I see in the answer to this question that ...
1
vote
1answer
264 views
Rails 3 integrated with Sequel?
There appear to be at least four repos on github that claim to tie in Sequel to the latest Rails 3 beta.
Has anyone successfully replaced ActiveRecord with Sequel in a Rails 3 project? Could you ...
1
vote
1answer
403 views
What should MiniTest::Spec files be named?
I want to use MiniTest::Spec, I found a couple resources to get started, but none of them mentioned what the test files (or spec files) should be named, and where they should be placed:
test/test_*
...
1
vote
2answers
137 views
Can I ensure all tests contain an assertion in test/unit?
With test/unit, and minitest, is it possible to fail any test that doesn't contain an assertion, or would monkey-patching be required (for example, checking if the assertion count increased after each ...
0
votes
0answers
22 views
How do I effectively force MiniTest to run my tests in order?
I know. This is discouraged. For reasons I won't get into, I need to run my tests in the order they are written. According to the documentation, if my test class (we'll call it TestClass) extends ...
0
votes
1answer
40 views
Testing divide with minitest
I made this code and i try to test it with minitest, but it seems that i am not using the right syntax for an exception :/
def my_method(a,b=10)
begin
a/b
rescue
raise 'bla'
end
end
...
0
votes
1answer
126 views
Converting to modular sinatra app breaks tests
I've modularised by classic sinatra app and moved my routes in my sinatra app into individual routes files as per http://stackoverflow.com/a/5030173/111884, however, I can't seem to get my tests ...
0
votes
3answers
118 views
Capybara field.has_css? matcher
I'm using following spec with MiniTest::Spec and Capybara:
find_field('Email').must_have_css('[autofocus]')
to check if the field called 'Email' has the autofocus attribute. The doc says following:
...
0
votes
1answer
87 views
Why does mintiest crash before running tests in Rails 2.3.9?
I'm attempting to upgrade a Rails 2.3.9 app to work with Ruby 1.9.2-p290; previously the app worked with Ruby 1.8.7. I'm noticing a few quirks, the most remarkable is that I cannot run any tests in ...
0
votes
2answers
162 views
Can minitest do something like “rspec --color --format doc”?
I want a pretty-printed summary of what tests are running, similar to
rspec --color --format doc
Can minitest that?
0
votes
2answers
321 views
Using Minitest in Rails
Recently, I've read quite a few articles about Minitest. I really like the idea of a super lightweight test framework. I decided to replace rspec with it in a recent project and have had no luck ...
0
votes
2answers
340 views
How do you perform javascript tests with Minitest, Capybara, Selenium?
There are a lot of examples on how to perform javascript tests with Capybara/Selenium/Rspec in which you can write a test like so:
it "does something", :js => true do
...
end
However with ...
0
votes
1answer
490 views
Pathname.rb error on running a minitest testcase
I'm running ruby 1.8.6.
I installed the minitest 1.3.1 gem, which is the new defacto replacement for the Test::Unit framework in Ruby 1.9 The API is supposed to be the same.
I wrote a small test to ...