summaryrefslogtreecommitdiffstats
path: root/srfi/srfi-228-test.scm
diff options
context:
space:
mode:
authorGravatar Arthur A. Gleckler 2022-11-14 15:41:39 -0800
committerGravatar Arthur A. Gleckler 2022-11-14 15:41:39 -0800
commit1c12ee4b2ddc727cbb3c346490b5d8b42203b063 (patch)
tree424162ff676541733dffe485f5c02e9fd496d635 /srfi/srfi-228-test.scm
parentMove to "srfi/" directory. Follow naming convention. (diff)
Add tests based on examples. Move.
Diffstat (limited to 'srfi/srfi-228-test.scm')
-rw-r--r--srfi/srfi-228-test.scm11
1 files changed, 0 insertions, 11 deletions
diff --git a/srfi/srfi-228-test.scm b/srfi/srfi-228-test.scm
deleted file mode 100644
index 305a4dc..0000000
--- a/srfi/srfi-228-test.scm
+++ /dev/null
@@ -1,11 +0,0 @@
-(import (chibi test))
-
-(define-record-type <date>
- (make-date year month day)
- date?
- (year date-year)
- (month date-month)
- (day date-day))
-
-
-