summaryrefslogtreecommitdiff
path: root/spec/ffi/struct_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ffi/struct_spec.rb')
-rw-r--r--spec/ffi/struct_spec.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/spec/ffi/struct_spec.rb b/spec/ffi/struct_spec.rb
index 0429dd5..d09b7b6 100644
--- a/spec/ffi/struct_spec.rb
+++ b/spec/ffi/struct_spec.rb
@@ -467,8 +467,6 @@ module StructSpecsStructTests
end
it "Can use CallbackInfo struct field in Ractor", :ractor do
- skip "sharing structs accross Ractors requires Ruby-3.1" if RUBY_VERSION < "3.1"
-
res = Ractor.new do
s = CallbackMember::TestStruct.new
add_proc = lambda { |a, b| a + b }
@@ -562,8 +560,6 @@ module StructSpecsStructTests
end
it "should be usable with Ractor", :ractor do
- skip "Using structs in Ractor requires Ruby-3.1" if RUBY_VERSION < "3.1"
-
class TestStructRactor < FFI::Struct
layout :i, :int
end