1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/bluebox/requests/template_tests.rb
2010-06-03 21:32:59 -07:00

32 lines
786 B
Ruby

Shindo.tests('Bluebox | template requests', ['bluebox']) do
@template_format = {
'created' => String,
'description' => String,
'id' => String,
'public' => Fog::Boolean
}
tests('success') do
@template_id = 'a00baa8f-b5d0-4815-8238-b471c4c4bf72' # Ubuntu 9.10 64bit
tests("get_template('#{@template_id}')").formats(@template_format) do
Bluebox[:blocks].get_template(@template_id).body
end
tests("get_templates").formats([@template_format]) do
Bluebox[:blocks].get_templates.body
end
end
tests('failure') do
tests("get_template('00000000-0000-0000-0000-000000000000')").raises(Fog::Bluebox::NotFound) do
Bluebox[:blocks].get_template('00000000-0000-0000-0000-000000000000')
end
end
end