sharlatan pushed a commit to branch go-team
in repository guix.
commit 44753283a85092dc7f90dcd4a0a6bcb42fbbcfb9
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Dec 19 16:52:24 2024 +0000
gnu: Add go-github-com-maxatome-go-testdeep.
* gnu/packages/golang-check.scm (go-github-com-maxatome-go-testdeep): New
variable.
Change-Id: I73ef16e2b98f28f91f0e05f03be353219f746ddc
---
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 37164586cd..0b34644622 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -921,6 +921,34 @@ output capturing, mocking, and much more.")
testing capabilities.")
(license license:expat)))
+(define-public go-github-com-maxatome-go-testdeep
+ (package
+ (name "go-github-com-maxatome-go-testdeep")
+ (version "1.14.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/maxatome/go-testdeep")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0r9w79qm6j080gbqhrd5gwjzsnkmrcihy4yniw77g0wkspxxdjww"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/maxatome/go-testdeep"
+ ;; Structure comparison not equal.
+ #:test-flags #~(list "-skip" "TestFatalTrace")))
+ (propagated-inputs
+ (list go-github-com-davecgh-go-spew))
+ (home-page "https://github.com/maxatome/go-testdeep")
+ (synopsis "Extended HTTP API testing framework")
+ (description
+ "Package testdeep allows flexible deep comparison, it is an adaptation of
+Perl's @url{https://metacpan.org/pod/Test::Deep, Test::Deep perl}.")
+ (license license:bsd-2)))
+
(define-public go-github-com-onsi-ginkgo
(package
(name "go-github-com-onsi-ginkgo")