bitten by test order, fixed
This commit is contained in:
parent
bd2bf612ac
commit
5e04ee7212
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user