Starting to use Uniglot for hooks standardization.

This commit is contained in:
2022-04-30 23:14:56 -05:00
parent ce2e2d3863
commit f034d627a6
17 changed files with 234 additions and 11 deletions

8
tests/test_hooks.py Normal file
View File

@@ -0,0 +1,8 @@
import os
import pytest
def test_hooks_exec():
fh = os.popen("find Hooks -type f -exec ls -l {} \\; | egrep ^-rw-")
output = fh.read()
retcode = fh.close()
assert retcode == 256 and output == ''