mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
9 lines
No EOL
193 B
Ruby
9 lines
No EOL
193 B
Ruby
require 'spec_helper'
|
|
|
|
describe V8::C::External do
|
|
it "can store and retrieve a value" do
|
|
o = Object.new
|
|
external = V8::C::External::New(o)
|
|
external.Value().should be(o)
|
|
end
|
|
end |