1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/spec/rackspace/requests/storage/delete_container_spec.rb
2010-09-09 17:50:38 -07:00

24 lines
602 B
Ruby

require File.dirname(__FILE__) + '/../../../spec_helper'
describe 'Rackspace::Storage.delete_container' do
describe 'success' do
before(:each) do
Rackspace[:storage].put_container('container_name')
end
it "should return proper attributes" do
Rackspace[:storage].delete_container('container_name')
end
end
describe 'failure' do
it "should raise a NotFound error if the container does not exist" do
lambda do
Rackspace[:storage].delete_container('container_name')
end.should raise_error(Fog::Rackspace::Storage::NotFound)
end
end
end