Add check-xml hook.

This commit is contained in:
Anthony Sottile 2015-01-17 10:21:44 -08:00
parent fea9b2ece7
commit ddc9208a5f
10 changed files with 57 additions and 1 deletions

13
tests/check_xml_test.py Normal file
View 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