public
Description: Blanket is a flexible backup framework designed to get the drudgery out of the way and to make automated backups easy.
Homepage: http://jimvanfleet.com/projects/blanket
Clone URL: git://github.com/bigfleet/blanket.git
blanket / spec / s3_spec.rb
100644 10 lines (7 sloc) 0.237 kb
1
2
3
4
5
6
7
8
9
10
require File.dirname(__FILE__) + "/spec_helper.rb"
 
describe "The S3 sink" do
  
  it "should give back an accurate set of default attributes" do
    atts = S3.default_attributes
    atts["access_key_id"].should == "your-id"
  end
  
end