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

26 lines
No EOL
649 B
Ruby

require 'spec_helper'
describe V8::C::Exception do
it "can be thrown from Ruby" do
t = V8::C::FunctionTemplate::New(method(:explode))
@cxt.Global().Set("explode", t.GetFunction())
script = V8::C::Script::New(<<-JS, '<eval>')
(function() {
try {
explode()
} catch (e) {
return e.message
}
})()
JS
result = script.Run()
result.should_not be_nil
result.should be_kind_of(V8::C::String)
result.Utf8Value().should eql 'did not pay syntax'
end
def explode(arguments)
error = V8::C::Exception::SyntaxError('did not pay syntax')
V8::C::ThrowException(error)
end
end