mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
13 lines
No EOL
195 B
Ruby
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 |