Sha256: 8a82c06033701e259e502de1ff31ea86dbc314e7608dedea56e762c6a1a5947d

Contents?: true

Size: 533 Bytes

Versions: 2

Compression:

Stored size: 533 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

# 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

2 entries across 2 versions & 1 rubygems

Version Path
s33r-0.3 test/test_setup.rb
s33r-0.3.1 test/test_setup.rb