2014-02-15 18:06:49 -05:00
|
|
|
Shindo.tests('Fog::Compute[:fogdocker] | image model', ['fogdocker']) do
|
|
|
|
|
|
|
|
images = Fog::Compute[:fogdocker].images
|
|
|
|
image = images.last.reload
|
|
|
|
|
|
|
|
tests('The image model should') do
|
|
|
|
tests('have the action') do
|
|
|
|
test('reload') { image.respond_to? 'reload' }
|
|
|
|
end
|
|
|
|
tests('have attributes') do
|
|
|
|
model_attribute_hash = image.attributes
|
|
|
|
attributes = [ :id,
|
2014-02-27 05:40:39 -05:00
|
|
|
:repo_tags,
|
2014-02-15 18:06:49 -05:00
|
|
|
:created,
|
|
|
|
:size
|
|
|
|
]
|
|
|
|
tests("The image model should respond to") do
|
|
|
|
attributes.each do |attribute|
|
|
|
|
test("#{attribute}") { image.respond_to? attribute }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
tests("The attributes hash should have key") do
|
2014-02-27 05:40:39 -05:00
|
|
|
(attributes-[:repo_tags]).each do |attribute|
|
2014-02-15 18:06:49 -05:00
|
|
|
test("#{attribute}") { model_attribute_hash.has_key? attribute }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
test('be a kind of Fog::Compute::Fogdocker::image') { image.kind_of? Fog::Compute::Fogdocker::Image }
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|