diff options
author | bd <bdunaisky@umass.edu> | 2024-11-04 22:38:15 -0500 |
---|---|---|
committer | bd <bdunaisky@umass.edu> | 2024-11-04 22:38:15 -0500 |
commit | eb660323ad8232978f98740634699e1363ca57bf (patch) | |
tree | f4d96b42a37773f0917914e698389ef118e2738e /src/unit-tests/parser/parser-test.scm | |
parent | 4717b3ea91b47c3d04d09cf84b9221ea1f89d9f2 (diff) |
setup parser, clean up lexer tests
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") |