# File test/test_properties.rb, line 44 def test_set_list list = @properties.list('test') list.push('HALO') @properties.set_list('test', list) assert_equal([ 'HALO' ], @properties.list('test')) assert_equal([ 'HALO' ], load_properties.list('test')) end