Coverage report: /home/ellis/comp/core/lib/pod/cli.lisp
Kind | Covered | All | % |
expression | 0 | 20 | 0.0 |
branch | 0 | 2 | 0.0 |
Key
Not instrumented
Conditionalized out
Executed
Not executed
Both branches taken
One branch taken
Neither branch taken
1
;;; cli.lisp --- Pod CLI
3
;; Container-tools Lisp CLI
8
(defcmd pod-info-cmd ()
9
(unless (probe-file (podman-local-user-socket))
10
(start-podman-service (podman-local-user-socket)))
11
(with-libpod-client (c (make-instance 'pod:libpod-client))
12
(log:info! "~A" (libpod-request c "_ping" :get))
13
(inspect (libpod-request-json c "info"))))
19
:description "container tools/libpod API client"