2018-04-26 12:31:37 +03:00
|
|
|
require_relative "helper"
|
2016-12-16 01:14:09 +02:00
|
|
|
|
2018-03-26 14:04:13 +03:00
|
|
|
module Parfait
|
2018-04-26 12:31:37 +03:00
|
|
|
class TestNamedLists < ParfaitTest
|
2016-12-16 01:14:09 +02:00
|
|
|
|
2018-03-26 14:04:13 +03:00
|
|
|
def test_new
|
|
|
|
list = NamedList.new
|
|
|
|
assert list.get_type
|
|
|
|
end
|
|
|
|
def test_var_names
|
|
|
|
list = NamedList.new
|
|
|
|
assert_equal List , list.get_instance_variables.class
|
|
|
|
end
|
|
|
|
def test_var_names_length
|
|
|
|
list = NamedList.new
|
|
|
|
assert_equal 1 , list.get_instance_variables.get_length
|
|
|
|
end
|
2016-12-25 18:02:39 +02:00
|
|
|
end
|
2016-12-16 01:14:09 +02:00
|
|
|
end
|