mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: ruby-bindex: Fix minitest.
* gnu/packages/ruby-xyz.scm (ruby-bindex)[arguments]{phases}: Add phase 'patch-minitest. [native-inputs]: Add ruby-minitest.
This commit is contained in:
parent
43922e7c83
commit
3052ab699f
1 changed files with 6 additions and 0 deletions
|
@ -2559,6 +2559,11 @@ building block for authentication strategies.")
|
|||
(arguments
|
||||
'(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-minitest
|
||||
(lambda _
|
||||
(substitute* "test/lib/test_case.rb"
|
||||
(("MiniTest::Unit::TestCase")
|
||||
"Minitest::Test"))))
|
||||
(add-after 'unpack 'patch
|
||||
(lambda _
|
||||
(substitute* "rakefile"
|
||||
|
@ -2569,6 +2574,7 @@ building block for authentication strategies.")
|
|||
(lambda _
|
||||
;; This is used in the rakefile when running the tests
|
||||
(setenv "LIB" "open4"))))))
|
||||
(native-inputs (list ruby-minitest))
|
||||
(synopsis "Open child processes from Ruby and manage them easily")
|
||||
(description
|
||||
"@code{Open4} is a Ruby library to run child processes and manage their
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue