new hook tests for broken symlinks

This commit is contained in:
Benjamin Chess 2016-01-14 15:25:46 -08:00
parent 5edf945ca5
commit 896c0cfdc0
5 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,13 @@
import pytest
from pre_commit_hooks.check_symlinks import check_symlinks
from testing.util import get_resource_path
@pytest.mark.parametrize(('filename', 'expected_retval'), (
('broken_symlink', 1),
('working_symlink', 0),
))
def test_check_symlinks(filename, expected_retval):
ret = check_symlinks([get_resource_path(filename)])
assert ret == expected_retval