mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
49 lines
No EOL
1.3 KiB
Ruby
49 lines
No EOL
1.3 KiB
Ruby
require "#{File.dirname(__FILE__)}/../spec_helper.rb"
|
|
|
|
include V8
|
|
|
|
describe C::Function do
|
|
it "is callable" do
|
|
Context.new do |cxt|
|
|
f = cxt.eval('(function() {return "Hello World"})', '<eval>');
|
|
f.call(nil).should == "Hello World"
|
|
end
|
|
end
|
|
|
|
it "receives proper argument length from ruby" do
|
|
Context.new do |cxt|
|
|
f = cxt.eval('(function() {return arguments.length})', 'eval')
|
|
f.call(nil,1, 2, 3).should == 3
|
|
end
|
|
end
|
|
|
|
it "maps all arguments from ruby" do
|
|
Context.new do |cxt|
|
|
f = cxt.eval('(function(one, two, three) {return one + two + three})', 'eval')
|
|
f.call(nil, 1,2,3).should == 6
|
|
end
|
|
end
|
|
|
|
it "properly maps ruby objects back and forth from arguments to return value" do
|
|
Context.new do |cxt|
|
|
Object.new.tap do |this|
|
|
f = cxt.eval('(function() {return this})', 'eval')
|
|
f.call(this).should be(this)
|
|
end
|
|
end
|
|
end
|
|
|
|
it "can be called outside of a context" do
|
|
Context.new do |cxt|
|
|
@f = cxt.eval('(function() {return "Call Me"})', 'eval')
|
|
end
|
|
@f.call(nil).should == "Call Me"
|
|
end
|
|
|
|
it "is reflected properly" do
|
|
Context.new do |cxt|
|
|
cxt['say'] = lambda {|word, times| word * times}
|
|
cxt.eval('say("Hello", 3)').should == "HelloHelloHello"
|
|
end
|
|
end
|
|
end |