1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/spec/c/handles_spec.rb
2012-06-05 08:00:04 -05:00

35 lines
No EOL
730 B
Ruby

require 'spec_helper'
describe "setting up handles scopes" do
include ExplicitScoper
before do
def self.instance_eval(*args, &block)
V8::C::Locker() do
cxt = V8::C::Context::New()
begin
cxt.Enter()
super(*args, &block)
ensure
cxt.Exit()
end
end
end
end
it "can allocate handle scopes" do
V8::C::HandleScope() do
V8::C::Object::New()
end.class.should eql V8::C::Object
end
it "isn't the end of the world if a ruby exception is raised inside a HandleScope" do
begin
V8::C::HandleScope() do
raise "boom!"
end
rescue StandardError => e
e.message.should eql "boom!"
end
end
end