Sha256: 7ddcea8df16e6032de8c934095835dadc87218d687c0513026aeda3ec2d6d579
Contents?: true
Size: 1.69 KB
Versions: 2
Compression:
Stored size: 1.69 KB
Contents
require 'test_helper' class ActiveSupportTest < MTest def test_run_simple_test_by_line_number output = m('examples/active_support_example_test.rb:12') assert_output(/1 (runs|tests), 1 assertions/, output) end def test_runs_entire_test_without_line_number output = m('examples/active_support_example_test.rb') assert_output(/4 (runs|tests)/, output) end def test_run_inside_of_test output = m('examples/active_support_example_test.rb:13') assert_output(/1 (runs|tests), 1 assertions/, output) end def test_run_on_end_of_test output = m('examples/active_support_example_test.rb:14') assert_output(/1 (runs|tests), 1 assertions/, output) end def test_run_inside_big_test output = m('examples/active_support_example_test.rb:18') assert_output(/1 (runs|tests), 3 assertions/, output) end def test_run_on_blank_line_orders_tests_by_line_number output = m('examples/active_support_example_test.rb:2') assert !$?.success? expected = <<-EOF No tests found on line 2. Valid tests to run: test_normal: m examples/active_support_example_test.rb:8 test_carrot: m examples/active_support_example_test.rb:12 test_daikon: m examples/active_support_example_test.rb:16 test_eggplant_fig: m examples/active_support_example_test.rb:22 EOF assert_equal expected.strip, output end def test_run_on_test_with_spaces output = m('examples/active_support_example_test.rb:22') assert_output(/1 (runs|tests), 1 assertions/, output) end def test_run_on_test_with_unescaped_regular_express_characters output = m('examples/active_support_unescaped_example_test.rb:8') assert_output(/1 (runs|tests), 1 assertions/, output) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
m-1.6.1 | test/active_support_test.rb |
m-1.6.0 | test/active_support_test.rb |