Coverage report: /development/source/library/com/dydra/gitlab/dydra-cgi/ffi/lisp/dydra-ndk/repository.lisp

KindCoveredAll%
expression011 0.0
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
1
 (in-package :dydra-ndk)
2
 
3
 (defun repository-exists-p (repository-name)
4
   "Returns T if the repository identified by REPOSITORY-NAME exists."
5
   t) ;; TODO
6
 
7
 (defun repository-creation-time (repository-name)
8
   "Returns the creation timestamp for the repository identified by
9
    REPOSITORY-NAME."
10
   (declare (ignore repository-name))
11
   (get-universal-time)) ;; TODO
12
 
13
 (defun repository-mutation-time (repository-name)
14
   "Returns the mutation timestamp for the repository identified by
15
    REPOSITORY-NAME."
16
   (repository-creation-time repository-name)) ;; TODO
17
 
18
 (defun create-repository (repository-name)
19
   "Creates a new repository identified by REPOSITORY-NAME."
20
   (declare (ignore repository-name))
21
   (values)) ;; TODO
22
 
23
 (defun drop-repository (repository-name)
24
   "Destroys an existing repository identified by REPOSITORY-NAME."
25
   (declare (ignore repository-name))
26
   (values)) ;; TODO