Author: ksprotte Date: Mon Feb 18 09:26:57 2008 New Revision: 2553
Added: trunk/bknr/datastore/src/data/encoding-test.lisp Modified: trunk/bknr/datastore/src/bknr-datastore.asd trunk/bknr/datastore/src/data/package.lisp trunk/thirdparty/fiveam/src/packages.lisp Log: added encoding-test
Modified: trunk/bknr/datastore/src/bknr-datastore.asd ============================================================================== --- trunk/bknr/datastore/src/bknr-datastore.asd (original) +++ trunk/bknr/datastore/src/bknr-datastore.asd Mon Feb 18 09:26:57 2008 @@ -8,22 +8,31 @@ (in-package :bknr-datastore.system)
(defsystem :bknr-datastore - :name "baikonour datastore" - :author "Hans Huebner hans@huebner.org" - :author "Manuel Odendahl manuel@bl0rg.net" - :version "0" - :maintainer "Manuel Odendahl manuel@bl0rg.net" - :licence "BSD" - :description "baikonour - launchpad for lisp satellites" + :name "baikonour datastore" + :author "Hans Huebner hans@huebner.org" + :author "Manuel Odendahl manuel@bl0rg.net" + :version "0" + :maintainer "Manuel Odendahl manuel@bl0rg.net" + :licence "BSD" + :description "baikonour - launchpad for lisp satellites"
- :depends-on (:cl-interpol - :closer-mop - :unit-test - :bknr-utils - :bknr-indices) + :depends-on (:cl-interpol + :closer-mop + :unit-test + :bknr-utils + :bknr-indices)
- :components ((:module "data" :components ((:file "package") - (:file "encoding" :depends-on ("package")) - (:file "txn" :depends-on ("encoding" "package")) - (:file "object" :depends-on ("txn" "package")) - (:file "blob" :depends-on ("txn" "object" "package")))))) + :components ((:module "data" :components ((:file "package") + (:file "encoding" :depends-on ("package")) + (:file "txn" :depends-on ("encoding" "package")) + (:file "object" :depends-on ("txn" "package")) + (:file "blob" :depends-on ("txn" "object" "package")))))) + +(defsystem :bknr-datastore-test + :depends-on (:bknr-datastore :FiveAM) + :components ((:module "data" :components ((:file "encoding-test") + )))) + +(defmethod asdf:perform ((op asdf:test-op) (system (eql (find-system :bknr-datastore)))) + (asdf:oos 'asdf:load-op :bknr-datastore-test) + (funcall (intern (string :run!) (string :it.bese.FiveAM)) :bknr.datastore))
Added: trunk/bknr/datastore/src/data/encoding-test.lisp ============================================================================== --- (empty file) +++ trunk/bknr/datastore/src/data/encoding-test.lisp Mon Feb 18 09:26:57 2008 @@ -0,0 +1,8 @@ +(in-package :bknr.datastore) + +(test:def-suite :bknr.datastore.encoding :in :bknr.datastore) +(test:in-suite :bknr.datastore.encoding) + +(test:test dummy + (test:is (= 1 2))) +
Modified: trunk/bknr/datastore/src/data/package.lisp ============================================================================== --- trunk/bknr/datastore/src/data/package.lisp (original) +++ trunk/bknr/datastore/src/data/package.lisp Mon Feb 18 09:26:57 2008 @@ -106,3 +106,5 @@ #:blob-subsystem
#:find-refs)) + +
Modified: trunk/thirdparty/fiveam/src/packages.lisp ============================================================================== --- trunk/thirdparty/fiveam/src/packages.lisp (original) +++ trunk/thirdparty/fiveam/src/packages.lisp Mon Feb 18 09:26:57 2008 @@ -19,7 +19,7 @@
(defpackage :it.bese.FiveAM (:use :common-lisp :it.bese.arnesi) - (:nicknames :5am :fiveam) + (:nicknames :5am :fiveam :test) (:export ;; creating tests and test-suites #:make-suite #:def-suite