X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=cl-mock.asd;h=7b71beb50157e5519bc616e1091d6fb4fcccf4b3;hb=e8b227cbde3cf3eeb9b28f347f9ff78acb0cf0a8;hp=fac28ae2204cb7d565f45e93aaf36e905ee9d6be;hpb=9635bd8a9ea703c1ea60feb8c16984692a6af6c0;p=cl-mock.git diff --git a/cl-mock.asd b/cl-mock.asd index fac28ae..7b71beb 100644 --- a/cl-mock.asd +++ b/cl-mock.asd @@ -4,22 +4,18 @@ (asdf:defsystem #:cl-mock :description "Mocking library" - :long-description "Mocking library to test plain and generic functions." + :long-description "Mocking library to test plain functions (extended +version)." :author "Olof-Joachim Frahm " :license "Simplified BSD License" - :version "0.0.1" + :version "1.0.0" #+asdf-unicode :encoding #+asdf-unicode :utf-8 - :depends-on (#:closer-mop #:alexandria #:arnesi) + :depends-on (#:cl-mock-basic #:closer-mop #:alexandria #:optima) :in-order-to ((asdf:test-op (asdf:load-op #:cl-mock-tests))) :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 ((:module "src" :components - ((:file "package") - (:file "functions") - (:file "mock") - (:file "methods") - (:file "facade"))))) + ((:file "facade")))))