fixes the tests after fixing hierarchy

This commit is contained in:
Torsten Ruger
2014-07-15 10:35:29 +03:00
parent 49f73c090d
commit 930740e1db
11 changed files with 79 additions and 25 deletions

View File

@ -27,19 +27,19 @@ class TestBasic < MiniTest::Test
def test_name
@string_input = 'foo '
@output = [Virtual::Reference]
@output = [Virtual::Return.new(Virtual::Mystery)]
check
end
def test_self
@string_input = 'self '
@output = [Virtual::SelfReference.new()]
@output = [Virtual::Self.new(Virtual::Mystery.new())]
check
end
def test_instance_variable
@string_input = '@foo_bar '
@output = [Virtual::Reference]
@output = [Virtual::Return.new( Virtual::Mystery.new())]
check
end