Coverage report: /home/ellis/comp/core/lib/vc/pkg.lisp
Kind | Covered | All | % |
expression | 0 | 6 | 0.0 |
branch | 0 | 0 | nil |
Key
Not instrumented
Conditionalized out
Executed
Not executed
Both branches taken
One branch taken
Neither branch taken
1
;;; vc/pkg.lisp --- Version Control Packages
5
(:use :cl :std :log :parse/lex :dat/sxp :obj :config)
12
:vc-bundle :vc-unbundle
14
:vc-clone :vc-push :vc-pull :vc-commit
15
:vc-init :vc-id :vc-add :vc-remove
16
:vc-addremove :vc-diff
20
:make-repo :register-repo
39
(:use :cl :std :cli :vc/proto :config)
40
(:export :*git-program*
42
:run-git-command :git-meta :gitignore :make-git-repo))
45
(:use :cl :std :cli :sb-bsd-sockets :vc/proto :config :dat/toml :ast :uri)
46
(:import-from :vc/git :run-git-command)
47
(:export :*hg-program*
49
:run-hg-command :hg-meta
50
:make-hg-client :hg-client :hgignore
52
:hg-compression-engine
53
:*hg-bundlespec-options*
54
:hg-bundlespec-string-p
56
:*hg-fast-export-script*
63
(:use :cl :std :cli :vc/proto :vc/git :vc/hg :config)
64
(:import-from :uri :uri :uri-to-string)
65
(:export :make-repo :with-current-vc-root :with-repo
66
:directory-repos :bundle-repo
67
:bundle-repos :update-repo
71
(:use :cl :std :cli :clap :vc/proto :vc/git :vc/hg :vc/util)
76
(:use-reexport :vc/proto :vc/hg :vc/git #+cli :vc/cli :vc/util))