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/files/get_containers_spec.rb

23 lines
530 B
Ruby
Raw Normal View History

2009-10-11 16:37:25 -04:00
require File.dirname(__FILE__) + '/../../../spec_helper'
describe 'Rackspace::Files.get_containers' do
describe 'success' do
before(:each) do
files.put_container('container_name')
end
after(:each) do
files.delete_container('container_name')
end
2009-10-11 16:37:25 -04:00
it "should return proper attributes" do
actual = files.get_containers.body
actual.first['bytes'].should be_an(Integer)
actual.first['count'].should be_an(Integer)
actual.first['name'].should be_a(String)
2009-10-11 16:37:25 -04:00
end
end
end