mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-06 12:06:53 +00:00
Add check-xml hook.
This commit is contained in:
parent
fea9b2ece7
commit
ddc9208a5f
10 changed files with 57 additions and 1 deletions
13
tests/check_xml_test.py
Normal file
13
tests/check_xml_test.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import pytest
|
||||
|
||||
from pre_commit_hooks.check_xml import check_xml
|
||||
from testing.util import get_resource_path
|
||||
|
||||
|
||||
@pytest.mark.parametrize(('filename', 'expected_retval'), (
|
||||
('bad_xml.notxml', 1),
|
||||
('ok_xml.xml', 0),
|
||||
))
|
||||
def test_check_xml(filename, expected_retval):
|
||||
ret = check_xml([get_resource_path(filename)])
|
||||
assert ret == expected_retval
|
||||
Loading…
Add table
Add a link
Reference in a new issue