Coverage report: /home/ellis/comp/core/lib/pod/obj/container.lisp

KindCoveredAll%
expression04 0.0
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
1
 ;;; container.lisp --- OCI Container Objects
2
 
3
 ;; 
4
 
5
 ;;; Code:
6
 
7
 (in-package :pod)
8
 
9
 (defclass live-container (id)
10
   (app-armor-profile args bounding-caps config common-pid-file created 
11
    dependencies driver effective-caps exec-ids exit-command graph-driver 
12
    host-config hostname-path hosts-path image image-name is-infra mount-label 
13
    mounts name namespace network-settings oci-config-path oci-runtime path pod 
14
    process-label resolv-conf-path restart-count rootfs size-root-fs size-rw state static-dir)
15
   (:documentation "A container in the Podman runtime environment."))
16
 
17
 (defclass build-container (id)
18
   (builder imageid imagename containername)
19
   (:documentation "A container in the Buildah OCI environment."))
20
 
21
 ;;; Hooks
22
 ;; https://github.com/containers/common/blob/main/pkg/hooks/docs/oci-hooks.5.md
23
 (defclass container-hook (json-object) ())