mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
23 lines
324 B
Ruby
23 lines
324 B
Ruby
require File.dirname(__FILE__) + '/../../../spec_helper'
|
|
|
|
describe 'S3::Buckets' do
|
|
|
|
describe "#all" do
|
|
|
|
it "should return an S3::Buckets"
|
|
|
|
end
|
|
|
|
describe "#create" do
|
|
|
|
it "should return an S3::Bucket that has been persisted to s3"
|
|
|
|
end
|
|
|
|
describe "#new" do
|
|
|
|
it "should return an S3::Bucket"
|
|
|
|
end
|
|
|
|
end
|