diff options
author | Teddy Wing | 2023-04-16 19:55:53 +0200 |
---|---|---|
committer | Teddy Wing | 2023-04-16 19:55:53 +0200 |
commit | 0fdcbf0a159c9ee4df69bad2c617de01dcb0fd3c (patch) | |
tree | fae2919fc7fcd11f389e6a2f5bf04f87ef79b7b3 /scratch.lisp | |
parent | 3347a25d6abc00f0cbcea893282eef949ca9b25f (diff) | |
download | xfdf-0fdcbf0a159c9ee4df69bad2c617de01dcb0fd3c.tar.bz2 |
Add test system
Write a test for the `write-xfdf` function.
Worked out how to create the test system from:
- https://lispcookbook.github.io/cl-cookbook/testing.html
- https://github.com/sjl/cl-digraph/blob/master/cl-digraph.test.asd
- https://github.com/fukamachi/dexador/blob/master/dexador-test.asd
Add the test string to the `write-xfdf` function to pass the test and
check that the test runner is set up correctly.
Diffstat (limited to 'scratch.lisp')
-rw-r--r-- | scratch.lisp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scratch.lisp b/scratch.lisp new file mode 100644 index 0000000..7e2d577 --- /dev/null +++ b/scratch.lisp @@ -0,0 +1 @@ +(ql:quickload "xfdf-test") |