Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run MiniTest tests in both 1.8 and 1.9 #21

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/m.rb
Expand Up @@ -188,7 +188,7 @@ def execute


# directly run the tests from here and exit with the status of the tests passing or failing # directly run the tests from here and exit with the status of the tests passing or failing
if defined?(MiniTest) if defined?(MiniTest)
exit MiniTest::Unit.runner.run test_arguments exit MiniTest::Unit.new.run test_arguments
elsif defined?(Test) elsif defined?(Test)
exit Test::Unit::AutoRunner.run(false, nil, test_arguments) exit Test::Unit::AutoRunner.run(false, nil, test_arguments)
else else
Expand Down