mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
47 lines
641 B
Ruby
47 lines
641 B
Ruby
require File.dirname(__FILE__) + '/../../../spec_helper'
|
|
|
|
describe 'S3::Objects' do
|
|
|
|
describe "#initialize" do
|
|
|
|
it "should return an S3::Objects"
|
|
|
|
end
|
|
|
|
describe "#all" do
|
|
|
|
it "should return an S3::Objects"
|
|
|
|
end
|
|
|
|
describe "#bucket" do
|
|
|
|
it "should return an S3::Bucket"
|
|
|
|
end
|
|
|
|
describe "#create" do
|
|
|
|
it "should return an S3::Object that has been persisted to s3"
|
|
|
|
end
|
|
|
|
describe "#get" do
|
|
|
|
it "should return an S3::Object with metadata and data"
|
|
|
|
end
|
|
|
|
describe "#head" do
|
|
|
|
it "should return an S3::Object with metadata"
|
|
|
|
end
|
|
|
|
describe "#new" do
|
|
|
|
it "should return an S3::Object"
|
|
|
|
end
|
|
|
|
end
|