diff --git a/tests/rules/test_git_branch_flag_0_to_flag_dash_v.py b/tests/rules/test_git_branch_flag_0_to_flag_dash_v.py index 3f3c8c79..21c1e021 100644 --- a/tests/rules/test_git_branch_flag_0_to_flag_dash_v.py +++ b/tests/rules/test_git_branch_flag_0_to_flag_dash_v.py @@ -8,8 +8,11 @@ def output(): return "" -def test_match(output): +def test_match_git_branch_0v(output): assert match(Command('git branch 0v', output)) + + +def test_matches_no__git_branch_0_anything(output): assert not match(Command('git branch -v', '')) assert not match(Command('ls', output))