mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
28 lines
611 B
Ruby
28 lines
611 B
Ruby
Shindo.tests('Slicehost#delete_slice', 'slicehost') do
|
|
tests('success') do
|
|
|
|
before do
|
|
@data = Slicehost[:slices].create_slice(1, 3, 'fogdeleteslice').body
|
|
@id = @data['id']
|
|
end
|
|
|
|
test('has proper output format') do
|
|
wait_for { Slicehost[:slices].get_slice(@id).body['status'] == 'active' }
|
|
Slicehost[:slices].delete_slice(@id)
|
|
end
|
|
|
|
end
|
|
|
|
tests('failure') do
|
|
|
|
test('raises NotFound error if slice does not exist') do
|
|
begin
|
|
Slicehost[:slices].delete_slice(0)
|
|
false
|
|
rescue Excon::Errors::NotFound
|
|
true
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|