Coverage report: /home/ellis/comp/core/app/packy/tests.lisp

KindCoveredAll%
expression08 0.0
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
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 ())