clean up more tests

This commit is contained in:
Torsten Ruger
2015-10-07 10:53:45 +03:00
parent c1d31a541d
commit 88fc4c0e47
5 changed files with 1 additions and 154 deletions

View File

@@ -3,10 +3,9 @@ require_relative "../helper"
class TestCompat < MiniTest::Test
def ttest_list_create_from_array
def test_list_create_from_array
array = [1,2,3]
list = Virtual.new_list(array)
assert_equal list , Virtual.new_list(array)
assert_equal array , list.to_a
end