summaryrefslogtreecommitdiff
path: root/spec/ruby/optional/capi/rbasic_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/optional/capi/rbasic_spec.rb')
-rw-r--r--spec/ruby/optional/capi/rbasic_spec.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/spec/ruby/optional/capi/rbasic_spec.rb b/spec/ruby/optional/capi/rbasic_spec.rb
new file mode 100644
index 0000000000..283e70db70
--- /dev/null
+++ b/spec/ruby/optional/capi/rbasic_spec.rb
@@ -0,0 +1,22 @@
+require_relative 'spec_helper'
+require_relative 'shared/rbasic'
+load_extension("rbasic")
+load_extension("data")
+load_extension("array")
+
+describe "RBasic support for regular objects" do
+ before :all do
+ @specs = CApiRBasicSpecs.new
+ @data = -> { [Object.new, Object.new] }
+ end
+ it_should_behave_like :rbasic
+end
+
+describe "RBasic support for RData" do
+ before :all do
+ @specs = CApiRBasicRDataSpecs.new
+ @wrapping = CApiWrappedStructSpecs.new
+ @data = -> { [@wrapping.wrap_struct(1024), @wrapping.wrap_struct(1025)] }
+ end
+ it_should_behave_like :rbasic
+end