From eb660323ad8232978f98740634699e1363ca57bf Mon Sep 17 00:00:00 2001 From: bd Date: Mon, 4 Nov 2024 22:38:15 -0500 Subject: setup parser, clean up lexer tests --- src/unit-tests/parser/parser-test.scm | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/unit-tests/parser/parser-test.scm (limited to 'src/unit-tests/parser/parser-test.scm') 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") -- cgit v1.2.3