diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-25 23:06:09 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-25 23:06:18 +0100 |
commit | 89405ff470c98f8e06af22124b92b2d8080bb047 (patch) | |
tree | 512ac5e2012d0c9dd48ffe938f7471126ad0c162 | |
parent | dd1cd47d1559d2a58bbdd94aac5c23ce18d3f2da (diff) | |
download | guix-89405ff470c98f8e06af22124b92b2d8080bb047.tar.gz guix-89405ff470c98f8e06af22124b92b2d8080bb047.zip |
gnu: Add go-github-com-tj-assert.
* gnu/packages/golang-check.scm (go-github-com-tj-assert): New variable.
Change-Id: Iaacb9cdf7a6314bf4384a50593b3d6279b6a164f
-rw-r--r-- | gnu/packages/golang-check.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 130daae28a..53bcc303bf 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -998,6 +998,33 @@ strings must or must not be sent to a given local UDP listener.") such as readers and writers that fail after N consecutive reads/writes.") (license license:expat))) +(define-public go-github-com-tj-assert + (package + (name "go-github-com-tj-assert") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/assert") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/tj/assert")) + (propagated-inputs + (list go-github-com-stretchr-testify)) + (home-page "https://github.com/tj/assert") + (synopsis "Golang @code{testify/assert} but as @code{testify/require}") + (description + "Package assert implements the same assertions as the +@url{https://github.com/stretchr/testify, assert} package but stops test +execution when a test fails.") + (license license:expat))) + (define-public go-github.com-smartystreets-assertions (package (name "go-github.com-smartystreets-assertions") |