0

What command line options are available if you're using the Test::Unit compatibility layer in ruby 1.9.1?

Background:

ruby test/test_all.rb --help

provides information on what command line options are available in ruby 1.8.7, but not in ruby 1.9.1 without the test-unit gem. Looking under Test and Test::Unit for ruby 1.9.1 rdoc doesn't help either.

Ruby 1.9.2 and later give useful output for the --help option.

Andrew Grimm
  • 78,473
  • 57
  • 200
  • 338

1 Answers1

1

you can install the test-unit gem which I believe will show you command line options if you run it with --help

rogerdpack
  • 62,887
  • 36
  • 269
  • 388