Sha256: 1a40f5eeab2f345f60648d63c4f2b84ad322cfbaca747dcbecc8835df366e142
Contents?: true
Size: 736 Bytes
Versions: 17
Compression:
Stored size: 736 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 wait_for { Slicehost[:slices].get_slice(@id).body['status'] == 'active' } Slicehost[:slices].delete_slice(@id) end test('has proper output format') do validate_format(@data, Slicehost::Formats::SLICE) end end tests('failure') do test('raises Forbidden error if flavor does not exist') do begin Slicehost[:slices].get_slice(0) false rescue Excon::Errors::Forbidden true end end end end
Version data entries
17 entries across 17 versions & 1 rubygems