Sha256: f35a0ea611765319af918cd2a863989a5cc316fb8b767dc8abc09c7adfa70912
Contents?: true
Size: 1.84 KB
Versions: 1
Compression:
Stored size: 1.84 KB
Contents
require "test_helper" class OptionsTest < MTest def test_short_help_option output = m "-h" assert_output(/^Usage: m \[OPTIONS\] \[FILES\]/, output) end def test_long_help_option output = m "--help" assert_output(/^Usage: m \[OPTIONS\] \[FILES\]/, output) end def test_verbose_option output = m "--version" assert_output(/^m #{M::VERSION}/o, output) end def test_short_line_option output = m "-l20 examples/minitest_example_test.rb" assert_output(/1 (runs|tests), 1 assertions/, output) end def test_long_line_option output = m "--line 20 examples/minitest_example_test.rb" assert_output(/1 (runs|tests), 1 assertions/, output) end def test_line_option_has_precedence_over_colon_format output = m "--line 20 examples/minitest_example_test.rb:2" assert_output(/1 (runs|tests), 1 assertions/, output) end def test_recursive_option output = m "-r examples/subdir" assert_output(/5 (runs|tests)/, output) end def test_recursive_option_without_directory_arg_fails output = m "-r" assert_match(/OptionParser::MissingArgument/, output) end def test_passthrough_options output = m "-- --verbose" assert_output(/0 errors/, output) end def test_passthrough_options_name_with_file output = m "examples/minitest_example_test.rb -- --name /test_that_it_will_not_blend/" assert_output(/1 (runs|tests)/, output) assert_output(/0 failures/, output) assert_output(/0 errors/, output) end def test_passthrough_options_with_file output = m "examples/minitest_example_test.rb -- --verbose" assert_output(/3 (runs|tests), 9 assertions/, output) end def test_passthrough_options_with_file_and_other_options output = m "--line 20 examples/minitest_example_test.rb -- --verbose" assert_output(/1 (runs|tests), 1 assertions/, output) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
m-1.6.2 | test/options_test.rb |