Pattern: Missing use of assert_silent
Issue: -
Enforces the test to use assert_silent { ... }
instead of using
assert_output('', '') { ... }
.
# bad
assert_output('', '') { puts object.do_something }
# good
assert_silent { puts object.do_something }