sharlatan pushed a commit to branch go-team
in repository guix.
commit 3aa6ddb3a2f891b180bfa4e11ac612b66ab3556a
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Sep 22 14:39:28 2024 +0100
gnu: Add go-github-com-smarty-assertions.
* gnu/packages/golang-check.scm (go-github-com-smarty-assertions): New
variable.
Change-Id: Ibc87eb2810bb66f3ebc5b1f5a894dfcc7942a0bb
---
gnu/packages/golang-check.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index 7f9fd3499c..7102146c25 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -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")