mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-05 03:26:53 +00:00
Add --django flag to test name checker
This commit is contained in:
parent
9ce45609a9
commit
db4b8f02f3
2 changed files with 34 additions and 2 deletions
|
|
@ -9,3 +9,23 @@ def test_validate_files_all_pass():
|
|||
def test_validate_files_one_fails():
|
||||
ret = validate_files(['not_test_ending.py', 'foo_test.py'])
|
||||
assert ret == 1
|
||||
|
||||
|
||||
def test_validate_files_django_all_pass():
|
||||
ret = validate_files(['--django', 'test_foo.py', 'test_bar.py'])
|
||||
assert ret == 0
|
||||
|
||||
|
||||
def test_validate_files_django_one_fails():
|
||||
ret = validate_files(['--django', 'not_test_ending.py', 'test_foo.py'])
|
||||
assert ret == 1
|
||||
|
||||
|
||||
def test_validate_files_not_django_fails():
|
||||
ret = validate_files(['foo_test.py', 'bar_test.py', 'test_baz.py'])
|
||||
assert ret == 1
|
||||
|
||||
|
||||
def test_validate_files_django_fails():
|
||||
ret = validate_files(['--django', 'foo_test.py', 'test_bar.py', 'test_baz.py'])
|
||||
assert ret == 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue