2010-04-05 01:11:28 -04:00
|
|
|
Shindo.tests('test_helper', 'meta') do
|
2010-03-28 20:04:38 -04:00
|
|
|
tests('#validate_data_format') do
|
|
|
|
|
|
|
|
tests('returns true') do
|
|
|
|
|
|
|
|
test('when format of value matches') do
|
2010-04-05 01:11:28 -04:00
|
|
|
validate_format({:a => :b}, {:a => Symbol})
|
2010-03-28 20:04:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test('when format of nested array elements matches') do
|
2010-04-05 01:11:28 -04:00
|
|
|
validate_format({:a => [:b, :c]}, {:a => [Symbol]})
|
2010-03-28 20:04:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test('when format of nested hash matches') do
|
2010-04-05 01:11:28 -04:00
|
|
|
validate_format({:a => {:b => :c}}, {:a => {:b => Symbol}})
|
2010-03-28 20:04:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
tests('returns false') do
|
|
|
|
|
|
|
|
test('when format of value does not match') do
|
2010-04-05 01:11:28 -04:00
|
|
|
!validate_format({:a => :b}, {:a => String})
|
2010-03-28 20:04:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test('when not all keys are checked') do
|
2010-04-05 01:11:28 -04:00
|
|
|
!validate_format({:a => :b}, {})
|
2010-03-28 20:04:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test('when some keys do not appear') do
|
2010-04-05 01:11:28 -04:00
|
|
|
!validate_format({}, {:a => String})
|
2010-03-28 20:04:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|