2009-11-01 23:34:00 -08:00
|
|
|
require File.dirname(__FILE__) + '/../../../spec_helper'
|
|
|
|
|
2010-09-09 17:50:38 -07:00
|
|
|
describe 'Rackspace::Storage.put_container' do
|
2009-11-01 23:34:00 -08:00
|
|
|
describe 'success' do
|
|
|
|
|
2009-11-05 00:02:26 -08:00
|
|
|
after(:each) do
|
2010-09-09 17:50:38 -07:00
|
|
|
Rackspace[:storage].delete_container('container_name')
|
2009-11-05 00:02:26 -08:00
|
|
|
end
|
|
|
|
|
2009-11-01 23:34:00 -08:00
|
|
|
it "should return proper attributes" do
|
2010-09-09 17:50:38 -07:00
|
|
|
Rackspace[:storage].put_container('container_name')
|
2009-11-01 23:34:00 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|