rubyx/test/virtual/test_basic.rb

58 lines
1.9 KiB
Ruby
Raw Normal View History

2014-06-26 16:52:15 +02:00
require_relative "virtual_helper"
class TestBasic < MiniTest::Test
include VirtualHelper
2014-07-01 14:57:13 +02:00
2014-06-26 16:52:15 +02:00
def test_number
@string_input = '42 '
2014-07-18 10:16:56 +02:00
@output = "---RETURN_MARKER- !ruby/object:Virtual::IntegerConstantRETURN_MARKER integer: 42RETURN_MARKER"
2014-06-26 16:52:15 +02:00
check
end
2014-07-01 14:57:13 +02:00
def test_true
@string_input = 'true '
@output = "---RETURN_MARKER- !ruby/object:Virtual::TrueConstant {}RETURN_MARKER"
2014-07-01 14:57:13 +02:00
check
end
def test_false
@string_input = 'false '
@output = "---RETURN_MARKER- !ruby/object:Virtual::FalseConstant {}RETURN_MARKER"
2014-07-01 14:57:13 +02:00
check
end
def test_nil
@string_input = 'nil '
@output = "---RETURN_MARKER- !ruby/object:Virtual::NilConstant {}RETURN_MARKER"
2014-07-01 14:57:13 +02:00
check
end
2014-06-26 16:52:15 +02:00
def test_name
@string_input = 'foo '
2014-07-18 10:16:56 +02:00
@output = "---RETURN_MARKER- !ruby/object:Virtual::ReturnRETURN_MARKER name: :returnRETURN_MARKER type: !ruby/class 'Virtual::Mystery'RETURN_MARKER"
2014-06-29 18:05:35 +02:00
check
2014-06-26 16:52:15 +02:00
end
def test_self
@string_input = 'self '
2014-07-18 10:16:56 +02:00
@output = "---RETURN_MARKER- !ruby/object:Virtual::SelfRETURN_MARKER name: :selfRETURN_MARKER type: !ruby/object:Virtual::Mystery {}RETURN_MARKER"
check
end
2014-06-26 16:52:15 +02:00
def test_instance_variable
@string_input = '@foo_bar '
2014-07-18 10:16:56 +02:00
@output = "---RETURN_MARKER- !ruby/object:Virtual::ReturnRETURN_MARKER name: :returnRETURN_MARKER type: !ruby/object:Virtual::Mystery {}RETURN_MARKER"
2014-06-29 18:05:35 +02:00
check
2014-06-26 16:52:15 +02:00
end
def test_module_name
@string_input = 'FooBar '
@output = "---RETURN_MARKER- &1 !ruby/object:Boot::BootClassRETURN_MARKER instance_methods: []RETURN_MARKER name: :FooBarRETURN_MARKER super_class_name: :ObjectRETURN_MARKER meta_class: !ruby/object:Boot::MetaClassRETURN_MARKER functions: []RETURN_MARKER me_self: *1RETURN_MARKER"
2014-06-29 18:05:35 +02:00
check
2014-06-26 16:52:15 +02:00
end
def test_string
@string_input = "\"hello\""
@output = "---RETURN_MARKER- !ruby/object:Virtual::StringConstantRETURN_MARKER string: helloRETURN_MARKER"
2014-06-29 18:05:35 +02:00
check
2014-06-26 16:52:15 +02:00
end
end