diff options
author | Vincent Ambo <mail@tazj.in> | 2021-12-15T20·51+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2021-12-15T21·02+0000 |
commit | fa73841a4b8bf305e375bdebf0c5b10b3fec4113 (patch) | |
tree | 702450de676048b2b2d13d306fe06c81c85dd070 /third_party/lisp/fiveam/fiveam.asd | |
parent | 0784e68e204d93b7f447ef9e2f436cbc066920cc (diff) |
chore(3p/lisp): use nixpkgs sources for fiveam r/3256
Change-Id: Id0613ace9b77d3ad46cdf2366e84d026d1158ace Reviewed-on: https://cl.tvl.fyi/c/depot/+/4340 Autosubmit: tazjin <mail@tazj.in> Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'third_party/lisp/fiveam/fiveam.asd')
-rw-r--r-- | third_party/lisp/fiveam/fiveam.asd | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/third_party/lisp/fiveam/fiveam.asd b/third_party/lisp/fiveam/fiveam.asd deleted file mode 100644 index 7607e33372fd..000000000000 --- a/third_party/lisp/fiveam/fiveam.asd +++ /dev/null @@ -1,36 +0,0 @@ -;;;; -*- Mode: Lisp; indent-tabs-mode: nil -*- - -#.(unless (or #+asdf3.1 (version<= "3.1" (asdf-version))) - (error "You need ASDF >= 3.1 to load this system correctly.")) - -(defsystem :fiveam - :author "Edward Marco Baringer <mb@bese.it>" - :version (:read-file-form "version.sexp") - :description "A simple regression testing framework" - :license "BSD" - :depends-on (:alexandria :net.didierverna.asdf-flv :trivial-backtrace) - :pathname "src/" - :components ((:file "package") - (:file "utils" :depends-on ("package")) - (:file "check" :depends-on ("package" "utils")) - (:file "fixture" :depends-on ("package")) - (:file "classes" :depends-on ("package")) - (:file "random" :depends-on ("package" "check")) - (:file "test" :depends-on ("package" "fixture" "classes")) - (:file "explain" :depends-on ("package" "utils" "check" "classes" "random")) - (:file "suite" :depends-on ("package" "test" "classes")) - (:file "run" :depends-on ("package" "check" "classes" "test" "explain" "suite"))) - :in-order-to ((test-op (test-op :fiveam/test)))) - -(defsystem :fiveam/test - :author "Edward Marco Baringer <mb@bese.it>" - :description "FiveAM's own test suite" - :license "BSD" - :depends-on (:fiveam) - :pathname "t/" - :components ((:file "tests")) - :perform (test-op (o c) (symbol-call :5am :run! :it.bese.fiveam))) - -;;;;@include "src/package.lisp" - -;;;;@include "t/example.lisp" |