-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcl-mock-basic.asd
More file actions
23 lines (21 loc) · 913 Bytes
/
cl-mock-basic.asd
File metadata and controls
23 lines (21 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
;; -*- mode: lisp; syntax: common-lisp; coding: utf-8-unix; package: cl-user; -*-
(in-package #:cl-user)
(asdf:defsystem #:cl-mock-basic
:description "Mocking library"
:long-description "Mocking library to test plain functions."
:author "Olof-Joachim Frahm <olof@macrolet.net>"
:license "AGPL-3+"
:version "1.1.0"
#+asdf-unicode :encoding #+asdf-unicode :utf-8
:depends-on (#:closer-mop #:alexandria #:bordeaux-threads)
:in-order-to ((asdf:test-op (asdf:load-op #:cl-mock-tests-basic)))
:perform (asdf:test-op :after (op c)
(funcall (find-symbol (symbol-name '#:run!) '#:fiveam)
(find-symbol (symbol-name '#:cl-mock) '#:cl-mock-tests)))
:serial T
:components ((:static-file "README.md")
(:module "src"
:components
((:file "package")
(:file "functions")
(:file "mock")))))