diff options
author | Rouby Pierre-Antoine <pierre-antoine.rouby@inria.fr> | 2018-05-15 15:25:29 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-05-23 13:53:14 +0200 |
commit | 28380e0e2854f2a78e4b2677d1cf57fe42468f4d (patch) | |
tree | 0ac804bba4a4dba6658c52567b0b8e58dacfdde8 | |
parent | c4230cda090b8a4d96c195173f968c7a603d6d36 (diff) | |
download | guix-28380e0e2854f2a78e4b2677d1cf57fe42468f4d.tar.gz |
gnu: Add go-github-com-stretchr-testify.
* gnu/packages/golang.scm (go-github-com-stretchr-testify): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/golang.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index e4caf82562..e1ed9966ef 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1411,3 +1411,37 @@ increment versions.") (description "This package is a simple exponential backoff counter in Go.") (license license:expat)))) + +(define-public go-github-com-stretchr-testify + (let ((commit + "b1f989447a57594c728884458a39abf3a73447f7") + (revision "0")) + (package + (name "go-github-com-stretchr-testify") + (version (git-version "1.1.4" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stretchr/testify.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0p0gkqzh2p8r5g0rxm885ljl7ghih7h7hx9w562imx5ka0vdgixv")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/stretchr/testify")) + (home-page "https://github.com/stretchr/testify") + (synopsis "Go helper library for tests and invariant checking") + (description "This package provide many tools for testifying that your +code will behave as you intend. + +Features include: +@itemize +@item Easy assertions +@item Mocking +@item HTTP response trapping +@item Testing suite interfaces and functions. +@end itemize") + (license license:expat)))) |