Sha256: 4291a52d46341d845d6cd9fef318d8048acb47539c98f7a02de8f3a519fc2ddd
Contents?: true
Size: 700 Bytes
Versions: 10
Compression:
Stored size: 700 Bytes
Contents
Shindo.tests('Slicehost#get_slice', 'slicehost') do tests('success') do before do @data = Slicehost[:slices].create_slice(1, 3, 'foggetslice').body @id = @data['id'] @data = Slicehost[:slices].get_slice(@id).body end after do Fog.wait_for { Slicehost[:slices].get_slice(@id).body['status'] == 'active' } Slicehost[:slices].delete_slice(@id) end test('has proper output format') do has_format(@data, Slicehost::Formats::SLICE) end end tests('failure') do test('raises Forbidden error if flavor does not exist') do has_error(Excon::Errors::Forbidden) Slicehost[:slices].get_slice(0) end end end end
Version data entries
10 entries across 10 versions & 1 rubygems