1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-27 19:41:50 +02:00

gnu: ruby-rack: Update to 2.2.3.

* gnu/packages/ruby.scm (ruby-rack): Update to 2.2.3.
[source]: Remove patch. Add snippet.
[arguments]: Adjust custom 'fix-tests phase. Remove 'make-files-writable
phase.
[native-inputs]: Remove ruby-minitest-sprint, which. Add
ruby-minitest-global-expectations.
[propagated-inputs]: Remove ruby-concurrent.
* gnu/packages/patches/ruby-rack-ignore-failing-test.patch: Remove file.
* gnu/local.mk (dist_patch_DATA): Remove it.
This commit is contained in:
Efraim Flashner
2021-02-23 15:29:13 +02:00
parent 8bad3c8ddf
commit c2fdc528dd
3 changed files with 13 additions and 35 deletions
@@ -1,13 +0,0 @@
diff --git a/test/spec_server.rb b/test/spec_server.rb
index a3690bc..16c9536 100644
--- a/test/spec_server.rb
+++ b/test/spec_server.rb
@@ -161,7 +161,7 @@ describe Rack::Server do
it "check pid file presence and not owned process" do
pidfile = Tempfile.open('pidfile') { |f| f.write(1); break f }.path
server = Rack::Server.new(:pid => pidfile)
- server.send(:pidfile_process_status).must_equal :not_owned
+ #server.send(:pidfile_process_status).must_equal :not_owned
end
it "not write pid file when it is created after check" do