Sha256: 3ae1a3384c0f7155f5f9689983535fd1a04c1f38efaca11b563c968fad28988d

Contents?: true

Size: 195 Bytes

Versions: 69

Compression:

Stored size: 195 Bytes

Contents

require 'spec_helper'

describe "using v8 from multiple threads" do
  
  it "is possible" do
    Thread.new do
      require 'v8'
      V8::Context.new
    end.join
    V8::Context.new
  end
end

Version data entries

69 entries across 69 versions & 5 rubygems

Version Path
therubyracer-0.9.6 specthread/threading_spec.rb
therubyracer-0.9.5 specthread/threading_spec.rb
therubyracer-0.9.4 specthread/threading_spec.rb
therubyracer-0.9.3 specthread/threading_spec.rb
therubyracer-0.9.3beta1 specthread/threading_spec.rb
therubyracer-0.9.2 specthread/threading_spec.rb
therubyracer-0.9.2beta1 specthread/threading_spec.rb
therubyracer-0.9.1 specthread/threading_spec.rb
therubyracer-0.9.1beta1 specthread/threading_spec.rb