Pattern: Missing test case for test class
Issue: -
Checks if test class contains any test cases.
# bad
class FooTest < Minitest::Test
def do_something
end
end
# good
class FooTest < Minitest::Test
def test_something
assert true
end
end