8000 Test on Ruby v3.4. by ioquatix · Pull Request #2272 · rack/rack · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Test on Ruby v3.4. #2272

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-external.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby: ['3.2', '3.3']
ruby: ['3.2', '3.3', '3.4']

runs-on: ${{matrix.os}}
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yaml
Orig BE87 inal file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- '3.1'
- '3.2'
- '3.3'
- '3.4'
- jruby-head
- truffleruby-head
include:
Expand Down
4 changes: 2 additions & 2 deletions test/spec_headers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ def test_has_value

def test_inspect
%i'inspect to_s'.each do |meth|
assert_equal '{}', @h.send(meth)
assert_equal '{"ab"=>"1", "cd"=>"2", "3"=>"4"}', @fh.send(meth)
assert_equal({}.inspect, @h.send(meth))
assert_equal({"ab"=>"1", "cd"=>"2", "3"=>"4"}.inspect, @fh.send(meth))
end
end

Expand Down
Loading
0