diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-07-23 08:06:43 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-07-23 08:06:43 -0700 |
commit | b2a47642713286c195d2e4fd27b67019a0cba411 (patch) | |
tree | 18f0d330e20e3a416cda7b1f7f7ae35bba7a2221 /tests/012 | |
parent | 956785645ee52c5c7226d6eddd47dc01c7f33567 (diff) | |
download | txr-b2a47642713286c195d2e4fd27b67019a0cba411.tar.gz txr-b2a47642713286c195d2e4fd27b67019a0cba411.tar.bz2 txr-b2a47642713286c195d2e4fd27b67019a0cba411.zip |
Split off test macros from ifa.tl into common file.
* Makefile (TESTS_OUT): Don't use find to hunt down tests;
but rather wildcard. This way common.tl is not mistakenly
identified as an independent test file.
* tests/012/ifa.tl: Removed test code, placed in new file
which is loaded.
* tests/common.tl: New file.
Diffstat (limited to 'tests/012')
-rw-r--r-- | tests/012/ifa.tl | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/tests/012/ifa.tl b/tests/012/ifa.tl index ae283abc..64fc6793 100644 --- a/tests/012/ifa.tl +++ b/tests/012/ifa.tl @@ -1,17 +1,4 @@ -(defmacro error-to-sym (expr) - ^(catch ,expr - (error (cond) :error))) - -;; test framework for ifa uses ifa! -(defmacro test (:env env expr expected) - (catch - (let ((expr-expn (macroexpand expr env))) - ^(ifa (not (equal (error-to-sym ,expr-expn) ',expected)) - (error "test case ~s failed: produced ~s; expected ~s" - ',expr it ',expected))) - (error (exc) - (unless (eq expected :error) - (error "test case ~s failed to expand: expected is ~s" expr expected))))) +(load "../common") ;; "it" is (+ 2 2) (test (ifa (> (+ 2 2) 0) (* it 2)) |