Coverage report: /home/runner/work/geb/geb/test/package.lisp

KindCoveredAll%
expression04 0.0
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
1
 (pax:define-package :geb-test
2
   (:shadowing-import-from :geb :prod :case)
3
   (:shadowing-import-from :parachute :name)
4
   (:shadowing-import-from :serapeum  :true)
5
   (:shadow :value :children)
6
   (:import-from #:geb-bool #:bool)
7
   (:local-nicknames  (#:poly #:geb.poly)
8
                      (#:list #:geb-list)
9
                      (#:bool #:geb-bool)
10
                      (#:dec  #:geb-decision)
11
                      (#:bitc #:geb.bitc)
12
                      (#:seqn #:geb.seqn.spec)
13
                      (#:lambda #:geb.lambda))
14
   (:use #:geb.common #:parachute))
15
 
16
 (in-package :geb-test)
17
 
18
 (define-test geb-test-suite
19
   :serial nil)
20
 
21
 (pax:defsection @geb-test-manual (:title "Testing")
22
   "We use [parachute](https://quickref.common-lisp.net/parachute.html)
23
 as our testing framework.
24
 
25
 Please read the
26
 [manual](https://quickref.common-lisp.net/parachute.html) for extra
27
 features and how to better lay out future tests"
28
   (run-tests pax:function)
29
   (run-tests-error pax:function)
30
   (code-coverage pax:function))