Sha256: 5c647e81931a9ae5a938fa4ab950e5579b30de67074bd3fa22452e9078bf7e91
Contents?: true
Size: 730 Bytes
Versions: 34
Compression:
Stored size: 730 Bytes
Contents
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
Version data entries
34 entries across 34 versions & 7 rubygems