mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
d1e9088cf0
You can now create a JS object from Ruby-land without segfaulting
7 lines
135 B
Ruby
7 lines
135 B
Ruby
require 'c_spec_helper'
|
|
|
|
describe V8::C::V8 do
|
|
it 'can say its version' do
|
|
expect(V8::C::V8.GetVersion).to be_a String
|
|
end
|
|
end
|