summaryrefslogtreecommitdiff
path: root/spec/ruby/optional/capi/binding_spec.rb
diff options
context:
space:
mode:
-rw-r--r--spec/ruby/optional/capi/binding_spec.rb21
1 files changed, 6 insertions, 15 deletions
@@ -8,21 +8,12 @@ describe "CApiBindingSpecs" do
end
describe "Kernel#binding" do
- ruby_version_is '3.2' do
- it "raises when called from C" do
- foo = 14
- -> { @b.get_binding }.should raise_error(RuntimeError)
- end
- end
-
- ruby_version_is ''...'3.2' do
- it "gives the top-most Ruby binding when called from C" do
- foo = 14
- b = @b.get_binding
- b.local_variable_get(:foo).should == 14
- b.local_variable_set :foo, 12
- foo.should == 12
- end
end
end
end