gnu: Add ruby-test-construct.

* gnu/packages/ruby.scm (ruby-test-construct): New variable.
This commit is contained in:
Christopher Baines 2019-02-17 17:14:31 +00:00
parent d6084cdb12
commit 93dc8684cf
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -2242,6 +2242,29 @@ (define-public ruby-packnga
(home-page "http://ranguba.org/packnga/")
(license license:lgpl2.0+)))
(define-public ruby-test-construct
(package
(name "ruby-test-construct")
(version "2.0.1")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "test_construct" version))
(sha256
(base32
"1a2ym3l068d0pxzzr95kvqx87zpdsarxslz9ygd4qfm9frrz0kgj"))))
(build-system ruby-build-system)
(native-inputs
`(("bundler" ,bundler)
("ruby-mocha" ,ruby-mocha)
("ruby-rspec" ,ruby-rspec)))
(synopsis "Creates temporary files and directories for testing")
(description
"TestConstruct is a @acronym{DSL, Domain Specific Language} for creating
temporary files and directories during tests.")
(home-page "https://github.com/bhb/test_construct")
(license license:expat)))
(define-public ruby-test-unit
(package
(name "ruby-test-unit")