mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-09 04:54:16 +00:00
Apply typing to all of pre-commit-hooks
This commit is contained in:
parent
63cc3414e9
commit
030bfac7e4
54 changed files with 401 additions and 264 deletions
|
|
@ -1,36 +1,36 @@
|
|||
from pre_commit_hooks.tests_should_end_in_test import validate_files
|
||||
from pre_commit_hooks.tests_should_end_in_test import main
|
||||
|
||||
|
||||
def test_validate_files_all_pass():
|
||||
ret = validate_files(['foo_test.py', 'bar_test.py'])
|
||||
def test_main_all_pass():
|
||||
ret = main(['foo_test.py', 'bar_test.py'])
|
||||
assert ret == 0
|
||||
|
||||
|
||||
def test_validate_files_one_fails():
|
||||
ret = validate_files(['not_test_ending.py', 'foo_test.py'])
|
||||
def test_main_one_fails():
|
||||
ret = main(['not_test_ending.py', 'foo_test.py'])
|
||||
assert ret == 1
|
||||
|
||||
|
||||
def test_validate_files_django_all_pass():
|
||||
ret = validate_files(['--django', 'tests.py', 'test_foo.py', 'test_bar.py', 'tests/test_baz.py'])
|
||||
def test_main_django_all_pass():
|
||||
ret = main(['--django', 'tests.py', 'test_foo.py', 'test_bar.py', 'tests/test_baz.py'])
|
||||
assert ret == 0
|
||||
|
||||
|
||||
def test_validate_files_django_one_fails():
|
||||
ret = validate_files(['--django', 'not_test_ending.py', 'test_foo.py'])
|
||||
def test_main_django_one_fails():
|
||||
ret = main(['--django', 'not_test_ending.py', 'test_foo.py'])
|
||||
assert ret == 1
|
||||
|
||||
|
||||
def test_validate_nested_files_django_one_fails():
|
||||
ret = validate_files(['--django', 'tests/not_test_ending.py', 'test_foo.py'])
|
||||
ret = main(['--django', 'tests/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'])
|
||||
def test_main_not_django_fails():
|
||||
ret = main(['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'])
|
||||
def test_main_django_fails():
|
||||
ret = main(['--django', 'foo_test.py', 'test_bar.py', 'test_baz.py'])
|
||||
assert ret == 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue