diff options
Diffstat (limited to 'src/unit-tests/parser/parser-test.scm')
-rw-r--r-- | src/unit-tests/parser/parser-test.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/unit-tests/parser/parser-test.scm b/src/unit-tests/parser/parser-test.scm new file mode 100644 index 0000000..d099329 --- /dev/null +++ b/src/unit-tests/parser/parser-test.scm @@ -0,0 +1,11 @@ +;; -*- compile-command: "guile -L ./src ./src/unit-tests/parser/parser-test.scm"; -*- +(use-modules (srfi srfi-64) + (modules parser parser)) + + +(test-begin "lexer-harness") + +(test-equal "hi" + "hi") + +(test-end "lexer-harness") |