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

49 lines
1.3 KiB
Ruby
Raw Normal View History

2010-04-21 19:09:13 -04:00
require "#{File.dirname(__FILE__)}/../spec_helper.rb"
include V8
describe C::Function do
it "is callable" do
Context.new do |cxt|
2010-04-21 19:09:13 -04:00
f = cxt.eval('(function() {return "Hello World"})', '<eval>');
f.call(nil).should == "Hello World"
2010-04-21 19:09:13 -04:00
end
end
it "receives proper argument length from ruby" do
Context.new do |cxt|
2010-04-21 19:09:13 -04:00
f = cxt.eval('(function() {return arguments.length})', 'eval')
f.call(nil,1, 2, 3).should == 3
2010-04-21 19:09:13 -04:00
end
end
it "maps all arguments from ruby" do
Context.new do |cxt|
2010-04-21 19:09:13 -04:00
f = cxt.eval('(function(one, two, three) {return one + two + three})', 'eval')
f.call(nil, 1,2,3).should == 6
2010-04-21 19:09:13 -04:00
end
end
it "properly maps ruby objects back and forth from arguments to return value" do
Context.new do |cxt|
2010-04-21 19:09:13 -04:00
Object.new.tap do |this|
f = cxt.eval('(function() {return this})', 'eval')
f.call(this).should be(this)
2010-04-21 19:09:13 -04:00
end
end
end
it "can be called outside of a context" do
Context.new do |cxt|
2010-04-21 19:09:13 -04:00
@f = cxt.eval('(function() {return "Call Me"})', 'eval')
end
@f.call(nil).should == "Call Me"
2010-04-21 19:09:13 -04:00
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
2010-04-21 19:09:13 -04:00
end