@@ -123,7 +123,7 @@ def test_by_default_rakelib_files_are_included
123123 end
124124
125125 def test_implicit_system
126- skip if jruby9?
126+ omit if jruby9?
127127
128128 rake_system_dir
129129 Dir . chdir @tempdir
@@ -470,7 +470,7 @@ def test_correct_number_of_tasks_reported
470470 end
471471
472472 def test_file_list_is_requirable_separately
473- skip if jruby9? # https://github.com/jruby/jruby/issues/3655
473+ omit if jruby9? # https://github.com/jruby/jruby/issues/3655
474474
475475 ruby "-rrake/file_list" , "-e" , 'puts Rake::FileList["a"].size'
476476 assert_equal "1\n " , @out
@@ -496,12 +496,12 @@ def test_signal_propagation_in_tests
496496 assert_match ( /ATEST/ , @out )
497497 refute_match ( /BTEST/ , @out )
498498 else
499- skip "Signal detect seems broken on this system"
499+ omit "Signal detect seems broken on this system"
500500 end
501501 end
502502
503503 def test_failing_test_sets_exit_status
504- skip if uncertain_exit_status?
504+ omit if uncertain_exit_status?
505505 rakefile_failing_test_task
506506 rake
507507 assert @exit . exitstatus > 0 , "should be non-zero"
@@ -520,7 +520,7 @@ def test_stand_alone_filelist
520520
521521 # We are unable to accurately verify that Rake returns a proper
522522 # error exit status using popen3 in Ruby 1.8.7 and JRuby. This
523- # predicate function can be used to skip tests or assertions as
523+ # predicate function can be used to omit tests or assertions as
524524 # needed.
525525 def uncertain_exit_status?
526526 defined? ( JRUBY_VERSION )
0 commit comments