summaryrefslogtreecommitdiffstats
path: root/tests/check_ast_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/check_ast_test.py')
-rw-r--r--tests/check_ast_test.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/check_ast_test.py b/tests/check_ast_test.py
new file mode 100644
index 0000000..686fd11
--- /dev/null
+++ b/tests/check_ast_test.py
@@ -0,0 +1,12 @@
+from pre_commit_hooks.check_ast import main
+from testing.util import get_resource_path
+
+
+def test_failing_file():
+ ret = main([get_resource_path('cannot_parse_ast.notpy')])
+ assert ret == 1
+
+
+def test_passing_file():
+ ret = main([__file__])
+ assert ret == 0