1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/spec/c/external_spec.rb
2012-06-05 08:00:04 -05:00

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