1
0
Fork 0
mirror of https://github.com/rails/execjs synced 2023-03-27 23:21:20 -04:00
execjs/test/test_execjs.rb

21 lines
502 B
Ruby
Raw Normal View History

2011-02-06 20:10:05 -05:00
require "execjs"
require "test/unit"
class TestExecJS < Test::Unit::TestCase
def test_exec
assert_equal true, ExecJS.exec("return true")
end
def test_eval
assert_equal ["red", "yellow", "blue"], ExecJS.eval("'red yellow blue'.split(' ')")
end
2011-02-06 21:35:37 -05:00
def test_runtime_available
runtime = ExecJS::Runtime.new(:command => "nonexistent")
assert_equal false, runtime.available?
runtime = ExecJS::Runtime.new(:command => "ruby")
assert_equal true, runtime.available?
end
2011-02-06 20:10:05 -05:00
end