diff options
Diffstat (limited to 'Alpha/Test.scm')
-rw-r--r-- | Alpha/Test.scm | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Alpha/Test.scm b/Alpha/Test.scm deleted file mode 100644 index 8c0916d..0000000 --- a/Alpha/Test.scm +++ /dev/null @@ -1,16 +0,0 @@ -;; a testing framework for scheme -;; inspired by clojure.test and srfi-64 - -(define-module (Alpha Test) - #:use-module ((Alpha Core) - #:select (prn)) - #:export (testing)) - -;; TODO: learn srfi-64 -;; TODO: port over `deftest' et al from clojure -;; TODO: someday a quickcheck-like would be best - -;; simple analog to clojure's `testing' -(define-syntax testing - ((_ description ...) - ((begin (prn description) ...)))) |