Kind | Covered | All | % |
expression | 0 | 8 | 0.0 |
branch | 0 | 0 | nil |
1
(defpackage :packy/tests
2
(:use :cl :rt :packy :rdb :db))
3
4
(in-package :packy/tests)
5
(defsuite :packy)
6
(in-suite :packy)
7
(load-database-backend :packy)
8
9
(deftest packy-db ()
10
(with-db (db :db (make-db :packy) :open t :close t)
11
(is (db-open-p db))))
12
13
(deftest packy-objects ())