rubyx/test/vool/test_array_statement.rb

20 lines
412 B
Ruby
Raw Normal View History

require_relative "helper"
module Vool
class TestArray < MiniTest::Test
def test_empty
lst = Compiler.compile( "[]")
assert_equal ArrayStatement , lst.class
end
def test_one
lst = Compiler.compile( "[1]")
assert_equal ArrayStatement , lst.class
end
def test_two
lst = Compiler.compile( "[1,2]")
assert_equal ArrayStatement , lst.class
end
end
end