mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add go-github-com-cockroachdb-datadriven.
* gnu/packages/golang-check.scm (go-github-com-cockroachdb-datadriven): New variable. Change-Id: I96d63fadc8f668ccff4c08f8e54942d5ca1c6430
This commit is contained in:
parent
17e7a93b59
commit
3d22571fef
1 changed files with 30 additions and 0 deletions
|
@ -375,6 +375,36 @@ test (using testing.TB's @code{TempDir}) and with a few helper methods.")
|
||||||
"A testing library for Go programs.")
|
"A testing library for Go programs.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-cockroachdb-datadriven
|
||||||
|
(package
|
||||||
|
(name "go-github-com-cockroachdb-datadriven")
|
||||||
|
(version "1.0.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/cockroachdb/datadriven")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1h2dhm4g1n8ny71lm495l5l842lwq320la0q8b8zmr4w3s5nyk09"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/cockroachdb/datadriven"))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-pmezard-go-difflib))
|
||||||
|
(home-page "https://github.com/cockroachdb/datadriven")
|
||||||
|
(synopsis "Data-Driven Tests for Golang")
|
||||||
|
(description
|
||||||
|
"This package implements an extension of
|
||||||
|
@url{https://github.com/golang/go/wiki/TableDrivenTests, Table-Driven
|
||||||
|
Testing}. Instead of building and iterating over a table in the test code,
|
||||||
|
the input is further separated into files (or inline strings). For certain
|
||||||
|
classes of tests, this can significantly reduce the friction involved in
|
||||||
|
writing and reading these tests.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public go-github-com-coder-quartz
|
(define-public go-github-com-coder-quartz
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-coder-quartz")
|
(name "go-github-com-coder-quartz")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue