Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 rake at this moment.

ruby unit_test.rb  #this will run all the test case
ruby unit_test.rb test1 #this will only run test1
share|improve this question

2 Answers

up vote 6 down vote accepted

you can pass the -n option on the command line to run a single test:

ruby my_test.rb -n test_my_method

where 'test_my_method' is the name of the test method you would like to run.

share|improve this answer
+1 Exactly what i want. But i only accept it after 6 minutes.. – pierr Jun 29 '11 at 3:12
2  
The full option is --name if you prefer long options. – Andrew Grimm Jun 29 '11 at 3:13
Also support regex: ruby my_test.rb -n /test_.*/ – imwilsonxu Sep 22 '12 at 5:07
Is there a way to run multiple methods? Say, I have 20 methods in the file and I want to run only 5 of it... – Arun May 6 at 9:02
If you are using test "foo bar" do;end in your code, the method name would be: test_foo_bar – Abdo 2 days ago

If you look for a non-shell solution, you could define a TestSuite.

Example:

gem 'test-unit'
require 'test/unit'
require 'test/unit/ui/console/testrunner'

#~ require './demo'  #Load the TestCases
# >>>>>>>>>>This is your test file demo.rb
class MyTest < Test::Unit::TestCase  
  def test_1()
    assert_equal( 2, 1+1)
    assert_equal( 2, 4/2)

    assert_equal( 1, 3/2)
    assert_equal( 1.5, 3/2.0)
  end
end
# >>>>>>>>>>End of your test file  


#create a new empty TestSuite, giving it a name
my_tests = Test::Unit::TestSuite.new("My Special Tests")
my_tests << MyTest.new('test_1')#calls MyTest#test_1

#run the suite
Test::Unit::UI::Console::TestRunner.run(my_tests)

In real life, the test class MyTest will be loaded from the original test file.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.