Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
houen committed Apr 25, 2024
1 parent 02d0d52 commit 91a2f77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/real/minitest_rerun_failed_test.rb
Expand Up @@ -75,15 +75,15 @@ def test_it_succeeds
end

def test_that_it_has_a_version_number
assert_not_nil ::MinitestRerunFailed::VERSION
refute ::MinitestRerunFailed::VERSION.nil?
end

def test_it_writes_failed_tests_to_stdout
assert_not_empty fail_self_console_output
refute fail_self_console_output.nil?
end

def test_it_writes_failed_tests_to_file
assert_not_empty fail_self_file_output
refute fail_self_file_output.nil?
end

def test_it_prints_failed_tests_with_seed
Expand Down

0 comments on commit 91a2f77

Please sign in to comment.