-
Notifications
You must be signed in to change notification settings - Fork 194
Closed
Description
From https://github.com/simplecov-ruby/simplecov/pull/1079/files#r1566262539
The failure is:
$ bundle exec rake spec
Failures:
1) return codes inside fixtures/frameworks when running testunit_bad.rb behaves like bad tests with default configuration prints a message to STDERR
Failure/Error: expect(@stderr).to match(/stopped.+SimpleCov.+previous.+error/i)
expected "" to match /stopped.+SimpleCov.+previous.+error/i
Diff:
@@ -1 +1 @@
-/stopped.+SimpleCov.+previous.+error/i
+""
Shared Example Group: "bad tests" called from ./spec/return_codes_spec.rb:69
# ./spec/return_codes_spec.rb:37:in `block (5 levels) in <top (required)>'
# ./spec/return_codes_spec.rb:12:in `block (4 levels) in <top (required)>'
# ./spec/return_codes_spec.rb:10:in `block (3 levels) in <top (required)>'
Finished in 40.45 seconds (files took 1.59 seconds to load)
389 examples, 1 failure
Failed examples:
rspec './spec/return_codes_spec.rb[1:1:3:1:1:2]' # return codes inside fixtures/frameworks when running testunit_bad.rb behaves like bad tests with default configuration prints a message to STDERR
Note the exit code is already correct (the spec above), but for some reason there is no output.
PragTob