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

34 lines
1,012 B
Ruby
Raw Normal View History

2012-05-18 11:56:15 -05:00
require 'spec_helper'
describe V8::C::Function do
include C::ContextHelper
2012-05-18 11:56:15 -05:00
it "can be called" do
V8::C::HandleScope() do
fn = run '(function() {return "foo"})'
fn.Call(@cxt.Global(), 0, []).Utf8Value().should eql "foo"
end
end
it "can be called as a constructor" do
V8::C::HandleScope() do
fn = run '(function() {this.foo = "foo"})'
fn.NewInstance().Get(V8::C::String::New('foo')).Utf8Value().should eql "foo"
end
end
it "can be called as a constructor with arguments" do
V8::C::HandleScope() do
fn = run '(function(foo) {this.foo = foo})'
object = fn.NewInstance(1, [V8::C::String::New("bar")])
object.Get(V8::C::String::New('foo')).Utf8Value().should eql "bar"
end
end
def run(source)
source = V8::C::String::New(source.to_s)
filename = V8::C::String::New("<eval>")
script = V8::C::Script::New(source, filename)
result = script.Run()
result.kind_of?(V8::C::String) ? result.Utf8Value() : result
end
end