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

Version Path
therubyracer-0.11.0beta7-x86-linux spec/c/handles_spec.rb
therubyracer-0.11.0beta7-x86_64-darwin-10 spec/c/handles_spec.rb
therubyracer-0.11.0beta7 spec/c/handles_spec.rb
therubyracer-0.11.0beta6-x86-linux spec/c/handles_spec.rb
therubyracer-0.11.0beta6-x86_64-linux spec/c/handles_spec.rb
therubyracer-0.11.0beta6 spec/c/handles_spec.rb
therubyracer-0.11.0beta5-x86-linux spec/c/handles_spec.rb
therubyracer-0.11.0beta5 spec/c/handles_spec.rb
therubyracer-0.11.0beta5-x86_64-linux spec/c/handles_spec.rb
therubyracer-0.11.0beta4 spec/c/handles_spec.rb
therubyracer-0.11.0beta3 spec/c/handles_spec.rb
therubyracer-0.11.0beta2-x86_64-linux spec/c/handles_spec.rb
therubyracer-0.11.0beta2 spec/c/handles_spec.rb
therubyracer-0.11.0beta1 spec/c/handles_spec.rb