rubyx/test/vool/test_method_expression.rb

49 lines
1.2 KiB
Ruby
Raw Normal View History

2019-08-08 11:18:36 +02:00
require_relative "helper"
module Vool
class TestMethodExpression < MiniTest::Test
2019-08-08 11:18:36 +02:00
include VoolCompile
def setup
Parfait.boot!(Parfait.default_test_options)
ruby_tree = Ruby::RubyCompiler.compile( as_main("a = 5") )
2019-08-08 11:18:36 +02:00
@clazz = ruby_tree.to_vool
end
def method
@clazz.body.first
end
def test_setup
assert_equal ClassExpression , @clazz.class
2019-08-08 11:18:36 +02:00
assert_equal Statements , @clazz.body.class
assert_equal MethodExpression , method.class
2019-08-08 11:18:36 +02:00
end
def test_fail
assert_raises{ method.to_parfait }
2019-08-08 11:18:36 +02:00
end
def test_method
assert_equal Parfait::Class , @clazz.to_parfait.class
end
def test_is_instance_method
main = @clazz.to_parfait.get_instance_method(:main)
assert_equal Parfait::VoolMethod , main.class
assert_equal :main , main.name
2019-08-08 11:18:36 +02:00
end
end
class TestMethodExpressionDoubleDef < MiniTest::Test
include VoolCompile
def setup
Parfait.boot!(Parfait.default_test_options)
ruby_tree = Ruby::RubyCompiler.compile( as_main("a = 5") + ";" + as_main("a = 5") )
@clazz = ruby_tree.to_vool
end
def method
@clazz.body.first
end
def test_no_double
assert_raises {@clazz.to_parfait}
end
end
2019-08-08 11:18:36 +02:00
end