(asdf:defsystem :cl-smoke.repl :name :cl-smoke.repl :version (0 0 1) :author "Tobias Rautenkranz" :license "GPL with linking exception" :description "REPL support for cl-smoke." :depends-on (:cl-smoke.qt.gui) :components ((:module "src" :components ((:file "package") (:file "repl" :depends-on ("package")) (:file "locate-widget" :depends-on ("package")) (:file "get-widget" :depends-on ("package")))))) (defmethod operation-done-p ((o test-op) (c (eql (find-system :cl-smoke.repl)))) nil) (defmethod perform ((o test-op) (c (eql (find-system :cl-smoke.repl)))) (operate 'asdf:load-op :cl-smoke.repl-tests) (operate 'asdf:test-op :cl-smoke.repl-tests))