File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 22
22
- " 2.6"
23
23
- " 2.7"
24
24
- " 3.0"
25
+ - " 3.1"
26
+ - " 3.2"
25
27
- " jruby-9.3"
26
28
- " jruby-9.4"
27
29
- " truffleruby-21.0.0"
Original file line number Diff line number Diff line change @@ -31,12 +31,14 @@ def setup
31
31
32
32
def test_transmit_strings
33
33
omit_if RUBY_PLATFORM == "java" , "JRuby throws an error without a real socket"
34
+ omit_if RUBY_VERSION >= "3.1" , "Ruby complains about connection not being open"
34
35
35
36
assert_equal "foo" , transmit ( "foo" )
36
37
end
37
38
38
39
def test_transmit_ber_encoded_numbers
39
40
omit_if RUBY_PLATFORM == "java" , "JRuby throws an error without a real socket"
41
+ omit_if RUBY_VERSION >= "3.1" , "Ruby complains about connection not being open"
40
42
41
43
@to . write 1234 . to_ber
42
44
assert_equal 1234 , @from . read_ber
You can’t perform that action at this time.
0 commit comments