1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/specthread/threading_spec.rb
2011-06-15 08:40:17 -05:00

13 lines
No EOL
195 B
Ruby

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