Use the original DELETE-FROM-PLIST replacement.
[alexandria.git] / alexandria-tests.asd
blob26fa2077a946212b93a8fa1b1152a5cf36d28885
1 (defsystem alexandria-tests
2   :depends-on (:alexandria #+sbcl :sb-rt #-sbcl :rt)
3   :components ((:file "tests")))
5 (defmethod operation-done-p
6     ((o test-op) (c (eql (find-system :alexandria-tests))))
7   nil)
9 (defmethod perform ((o test-op) (c (eql (find-system :alexandria-tests))))
10   (flet ((run-tests (&rest args)
11            (apply (intern (string '#:run-tests) '#:alexandria-tests) args)))
12     (run-tests :compiled nil)
13     (run-tests :compiled t)))