gnu: Add go-github-com-smarty-assertions.

* gnu/packages/golang-check.scm (go-github-com-smarty-assertions): New variable.

Change-Id: Ibc87eb2810bb66f3ebc5b1f5a894dfcc7942a0bb
This commit is contained in:
Sharlatan Hellseher 2024-09-22 14:39:28 +01:00
parent ac856615f8
commit d5f3e947f9
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1147,6 +1147,34 @@ makes extraction of setup/teardown behavior (as well as invoking the system
under test) much simpler.")
(license license:expat)))
(define-public go-github-com-smarty-assertions
(package
(name "go-github-com-smarty-assertions")
(version "1.16.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/smarty/assertions")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1kbl6h76mjvqkgszx81allhjzy8j331dbsb090rx134swbqs0pxc"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/smarty/assertions"))
(home-page "https://github.com/smarty/assertions")
(synopsis "Fluent assertion-style functions")
(description
"Package assertions contains the implementations for all assertions which
are referenced in goconvey's
@url{https://github.com/smartystreets/goconvey,@code{convey}} package and
gunit @url{github.com/smarty/gunit,@code{gunit}} for use with the
@code{So(...)} method. They can also be used in traditional Go test
functions and even in applications.")
(license license:expat)))
(define-public go-go-etcd-io-gofail
(package
(name "go-go-etcd-io-gofail")