rubyx/test/ruby/test_assignment1.rb

16 lines
267 B
Ruby
Raw Normal View History

require_relative "helper"
module Ruby
class TestVoolCallMulti2 < MiniTest::Test
include RubyTests
include RubyTests
def setup
@lst = compile( "@foo = a.call(b)").to_vool
2017-09-10 12:04:36 +02:00
end
def test_s
assert_equal "" , @lst.to_s
2018-03-18 18:08:00 +01:00
end
end
end