Sha256: 2a0e82e78da7ffc565db518c4fc1664df74af9470e48f3afb8ce8184492bd02e

Contents?: true

Size: 553 Bytes

Versions: 3

Compression:

Stored size: 553 Bytes

Contents

# loaded by all test classes
require 'rubygems'
require_gem 'rspec'

require File.dirname(__FILE__) + '/../lib/s33r'
include S33r
include S33r::S33rException
include S33r::Sync
include S33r::S3ACL

# set up some constants
module Testing
  ACCESS_KEY = '44CF9590006BF252F707'
  SECRET_ACCESS_KEY = 'OtxrzxIsfpFjA7SwPzILwy8Bw21TLhquhboDYROV'
end

# convenience for highlighting tasks
def todo
  fail
end

# clean newlines and tabs from XML to make comparisons easier
def clean_xml(xml_str)
  xml_str.gsub!(/\t/, '')
  xml_str.gsub!(/\n/, '')
  xml_str
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
s33r-0.4.2 test/test_setup.rb
s33r-0.4 test/test_setup.rb
s33r-0.4.1 test/test_setup.rb