source: tags/1.5.0/contrib/abcl-asdf/t/mvn-module.lisp

Last change on this file was 15020, checked in by Mark Evenson, 7 years ago

asdf-mvn-module: fix test invocation

Remove duplicate defintion of RESOLVE-MULTIPLE-MAVEN-DEPENDENCIES

File size: 520 bytes
Line 
1(in-package :cl-user)
2
3;;; TODO: restore original ASDF configuration after running test
4(defun asdf-add-test-mvn-module ()
5  (asdf:initialize-source-registry
6   `(:source-registry
7     (:directory ,(asdf:system-relative-pathname :asdf-mvn-module "t/eg/"))
8     :inherit-configuration)))
9
10(unless (ignore-errors (asdf:find-system :test-mvn-module))
11  (asdf-add-test-mvn-module))
12
13(prove:plan 1)
14(prove:ok (asdf:load-system :test-mvn-module)
15          "Testing loading of ASDF:MVN-MODULE definition
")
16
17(prove:finalize)
Note: See TracBrowser for help on using the repository browser.