Skip to content

Commit

Permalink
actually run the tests when test-op is performed
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbysmith007 committed Feb 1, 2012
1 parent cc51ef9 commit db2c950
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion collectors.asd
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
:depends-on (:collectors :lisp-unit))

(defmethod asdf:perform ((o asdf:test-op) (c (eql (find-system :collectors))))
(asdf:oos 'asdf:load-op :collectors-test))
(asdf:oos 'asdf:load-op :collectors-test)
(let ((*package* (find-package :collectors-test)))
(eval (read-from-string "(run-tests)"))))

;; Copyright (c) 2002-2006, Edward Marco Baringer (from arnesi lib)
;; 2011 Russ Tyndall , Acceleration.net http://www.acceleration.net
Expand Down

0 comments on commit db2c950

Please sign in to comment.