393ac873c9
as it was before blocks (thought blocks would make reuse of messages impossible, but was wrong, this only appilies to lambdas) (too) many tests affected
18 lines
290 B
Ruby
18 lines
290 B
Ruby
require_relative "../helper"
|
|
|
|
module Risc
|
|
class InterpreterAssignTwice < MiniTest::Test
|
|
include Ticker
|
|
|
|
def setup
|
|
@string_input = as_main("a = 5 ;a = 5 + a ; return a")
|
|
super
|
|
end
|
|
|
|
def test_ret
|
|
run_all
|
|
assert_equal 10 , get_return
|
|
end
|
|
end
|
|
end
|