Coverage report: /development/source/library/com/dydra/gitlab/dydra-cgi/ffi/lisp/dydra-ndk/repository.lisp
| Kind | Covered | All | % |
| expression | 0 | 11 | 0.0 |
| branch | 0 | 0 | nil |
Key
Not instrumented
Conditionalized out
Executed
Not executed
Both branches taken
One branch taken
Neither branch taken
1
(in-package :dydra-ndk)
3
(defun repository-exists-p (repository-name)
4
"Returns T if the repository identified by REPOSITORY-NAME exists."
7
(defun repository-creation-time (repository-name)
8
"Returns the creation timestamp for the repository identified by
10
(declare (ignore repository-name))
11
(get-universal-time)) ;; TODO
13
(defun repository-mutation-time (repository-name)
14
"Returns the mutation timestamp for the repository identified by
16
(repository-creation-time repository-name)) ;; TODO
18
(defun create-repository (repository-name)
19
"Creates a new repository identified by REPOSITORY-NAME."
20
(declare (ignore repository-name))
23
(defun drop-repository (repository-name)
24
"Destroys an existing repository identified by REPOSITORY-NAME."
25
(declare (ignore repository-name))