guix-commits
[Top][All Lists]
Advanced

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

04/05: gnu: Add go-github.com-smartystreets-goconvey.


From: Christopher Baines
Subject: 04/05: gnu: Add go-github.com-smartystreets-goconvey.
Date: Thu, 1 Feb 2018 15:22:48 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit 8d54ace78e4bb51f0c460fff11c0b3bbc97c7e1b
Author: Christopher Baines <address@hidden>
Date:   Wed Jan 31 13:44:55 2018 +0000

    gnu: Add go-github.com-smartystreets-goconvey.
    
    * gnu/packages/check.scm (go-github.com-smartystreets-goconvey): New 
variable.
---
 gnu/packages/check.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index b26deda..1276c0f 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -49,6 +49,7 @@
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages bash)
   #:use-module (gnu packages compression)
+  #:use-module (gnu packages golang)
   #:use-module (gnu packages python)
   #:use-module (gnu packages python-web)
   #:use-module (gnu packages time)
@@ -363,6 +364,32 @@ for writing tests in Go.")
     (home-page "https://github.com/smartystreets/assertions";)
     (license license:expat)))
 
+(define-public go-github.com-smartystreets-goconvey
+  (package
+    (name "go-github.com-smartystreets-goconvey")
+    (version "1.6.3")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/smartystreets/goconvey";)
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1ph18rkl3ns3fgin5i4j54w5a69grrmf3apcsmnpdn1wlrbs3dxh"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/smartystreets/goconvey"))
+    (propagated-inputs
+     `(("go-github.com-jtolds-gls" ,go-github.com-jtolds-gls)
+       ("go-github.com-smartystreets-assertions" 
,go-github.com-smartystreets-assertions)))
+    (synopsis "Go testing tool with both a web and terminal user interface")
+    (description
+     "GoConvey is a testing tool for Go. It integrates with go test, can show
+test coverage and has a web user interface that will refresh automatically.")
+    (home-page "https://github.com/smartystreets/goconvey";)
+    (license license:expat)))
+
 (define-public googletest
   (package
     (name "googletest")



reply via email to

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