summaryrefslogtreecommitdiff
path: root/.fenneldoc
diff options
context:
space:
mode:
authorAndrey Listopadov <andreyorst@gmail.com>2021-04-24 15:32:55 +0300
committerAndrey Listopadov <andreyorst@gmail.com>2021-04-24 15:35:15 +0300
commita8948ed1964033a437933db8c687d8c8e26bde44 (patch)
treeff8b31a2155b5360bc94aea44c8bf99394e76efa /.fenneldoc
parent54294f7c864b9597c3775793015f600b1022594f (diff)
fix: move test library to separate project
Diffstat (limited to '.fenneldoc')
-rw-r--r--.fenneldoc9
1 files changed, 6 insertions, 3 deletions
diff --git a/.fenneldoc b/.fenneldoc
index f21f4b9..720ab5e 100644
--- a/.fenneldoc
+++ b/.fenneldoc
@@ -3,8 +3,11 @@
;; https://gitlab.com/andreyorst/fenneldoc
{:ignored-args-patterns ["[a-z]" "%.%.%." "[xkf]s" "kvs" "col[0-9]" "cols?" "rest" "more" "keys" "tbl" "args"]
- :test-requirements {:init.fnl "(import-macros {: assert-eq : assert-ne : assert-is : assert-not} :tests.test)"
+ :project-version "0.5.3"
+ :project-license "[MIT](https://gitlab.com/andreyorst/fennel-cljlib/-/raw/master/LICENSE)"
+ :project-copyright "Copyright (C) 2020-2021 Andrey Listopadov"
+ :test-requirements {:init.fnl "(import-macros {: assert-eq : assert-ne : assert-is : assert-not} :fennel-test.test)"
:macros.fnl "(require-macros :macros)
- (import-macros {: assert-eq} :tests.test)
+ (import-macros {: assert-eq} :fennel-test.test)
(local {: eq : vector : hash-map} (require :init))"
- :tests/test.fnl "(require-macros :tests.test)"}}
+ :tests/test.fnl "(require-macros :fennel-test.test)"}}