diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2016-05-25 22:15:13 +1000 |
---|---|---|
committer | Ben Woodcroft <donttrustben@gmail.com> | 2016-05-25 22:34:29 +1000 |
commit | 2a96dbe6d6e49d339e54c4afd3d171712e772311 (patch) | |
tree | f58ac4afd71d1de187752ba73960d8a47476350e /gnu/packages/ruby.scm | |
parent | cbdd428cf4aab436e3080423622c2c2d8fdb84cd (diff) | |
download | patches-2a96dbe6d6e49d339e54c4afd3d171712e772311.tar patches-2a96dbe6d6e49d339e54c4afd3d171712e772311.tar.gz |
gnu: Add ruby-minitest-hooks.
* gnu/packages/ruby.scm (ruby-minitest-hooks): New variable.
Diffstat (limited to 'gnu/packages/ruby.scm')
-rw-r--r-- | gnu/packages/ruby.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index f46116e585..631a1cd152 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1707,6 +1707,33 @@ instance, it provides @code{assert_true}, @code{assert_false} and (home-page "http://blowmage.com/minitest-rg") (license license:expat))) +(define-public ruby-minitest-hooks + (package + (name "ruby-minitest-hooks") + (version "1.4.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "minitest-hooks" version)) + (sha256 + (base32 + "092fymh0c09v3a585qw3hc15b0zf159s74rxx1ga87drk5jr958z")))) + (build-system ruby-build-system) + (arguments + '(#:test-target "spec")) + (native-inputs + `(("ruby-sequel" ,ruby-sequel) + ("ruby-sqlite3" ,ruby-sqlite3))) + (synopsis "Hooks for the minitest framework") + (description + "Minitest-hooks adds @code{around}, @code{before_all}, @code{after_all}, +@code{around_all} hooks for Minitest. This allows, for instance, running each +suite of specs inside a database transaction, running each spec inside its own +savepoint inside that transaction. This can significantly speed up testing +for specs that share expensive database setup code.") + (home-page "http://github.com/jeremyevans/minitest-hooks") + (license license:expat))) + (define-public ruby-daemons (package (name "ruby-daemons") |