-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Closed
Description
We have recently introduced an internal deprecator for faker. See #2858 and #2919 for more details.
We'd like to have the option to skip printing out the deprecation warnings when running the tests. Currently, we get a long test output due to them.
Ruby's Deprecate gem has the option to wrap a test assertion in a skip_during block, intended to be used in the test suite only:
class TestSomething < Gem::Testcase
def test_some_thing_with_deprecations
Gem::Deprecate.skip_during do
actual_stdout, actual_stderr = capture_output do
Gem.something_deprecated
end
assert_empty actual_stdout
assert_equal(expected, actual_stderr)
end
end
endIt would be nice if we could have a similar option for our custom deprecator so our test output is not filled with those deprecation messages while they are being removed.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels