bitten by test order, fixed

This commit is contained in:
Torsten Ruger 2015-10-16 17:17:39 +03:00
parent bd2bf612ac
commit 5e04ee7212

View File

@ -6,6 +6,11 @@ class TestCallStatement < MiniTest::Test
def test_call_constant_int
@string_input = <<HERE
class Integer
int putint()
return 1
end
end
class Object
int main()
42.putint()
@ -36,7 +41,7 @@ HERE
def test_call_local_int
@string_input = <<HERE
class Integer
int putstring()
int putint()
return 1
end
end