gnu: ruby-term-ansicolor: Fix test for Ruby 2.5.

* gnu/packages/ruby.scm (ruby-term-ansicolor)[arguments]: Add new fix-test
phase to fix a test that fails under Ruby 2.5.
master
Christopher Baines 2018-09-29 11:17:02 +01:00
parent 0b060e3486
commit 39ecb977d3
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 5 additions and 0 deletions

View File

@ -2914,6 +2914,11 @@ Ruby's large and slower test/unit.")
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'fix-test
(lambda -
(substitute* "tests/hsl_triple_test.rb"
(("0\\\\\\.0%")
"0\\.?0?%"))))
(replace 'build
(lambda _
(invoke "gem" "build" "term-ansicolor.gemspec"))))))