guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#31463] [PATCH 5/6] gnu: Add go-github-com-stretchr-testify.


From: Rouby Pierre-Antoine
Subject: [bug#31463] [PATCH 5/6] gnu: Add go-github-com-stretchr-testify.
Date: Tue, 15 May 2018 15:25:29 +0200

* gnu/packages/golang.scm (go-github-com-stretchr-testify): New variable.
---
 gnu/packages/golang.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 37c31fab3..679ccc5d3 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1411,3 +1411,38 @@ 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 "Provide many tools for testifying that your code will behave
+as you intend.")
+      (description "This package provide many tools for testifying that your
+code will behave as you intend.
+
+Features include:
address@hidden
address@hidden Easy assertions
address@hidden Mocking
address@hidden HTTP response trapping
address@hidden Testing suite interfaces and functions.
address@hidden itemize")
+      (license license:expat))))
-- 
2.17.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]