2017-04-12 19:18:41 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
2018-07-19 13:46:51 +02:00
|
|
|
module Ruby
|
2019-08-16 17:42:57 +02:00
|
|
|
class TestVoolCallMulti2 < MiniTest::Test
|
2018-06-29 21:46:39 +02:00
|
|
|
include RubyTests
|
2017-04-12 19:18:41 +02:00
|
|
|
|
2019-08-16 17:42:57 +02:00
|
|
|
include RubyTests
|
|
|
|
def setup
|
|
|
|
@lst = compile( "@foo = a.call(b)").to_vool
|
2017-09-10 12:04:36 +02:00
|
|
|
end
|
2019-08-16 17:42:57 +02:00
|
|
|
def test_s
|
|
|
|
assert_equal "" , @lst.to_s
|
2018-03-18 18:08:00 +01:00
|
|
|
end
|
2017-04-12 19:18:41 +02:00
|
|
|
end
|
|
|
|
end
|