6774d07ff8a2b1cc7038499734a0a0517a9ec175
[cl-mock.git] / cl-mock.asd
1 ;;; -*- mode: lisp; syntax: common-lisp; coding: utf-8-unix; package: cl-user; -*-
2
3 (in-package #:cl-user)
4
5 (asdf:defsystem #:cl-mock
6   :description "Mocking library"
7   :description "Mocking (generic) functions."
8   :author "Olof-Joachim Frahm <olof@macrolet.net>"
9   :license "Simplified BSD License"
10   :depends-on (#:closer-mop)
11   :serial T
12   :components ((:module "src"
13                 :components
14                 ((:file "package")
15                  (:file "functions")))))