Sha256: d62286f58c3cbb336aff3ecd09981a026f557ee343d18d513f7647b5a814f212

Contents?: true

Size: 902 Bytes

Versions: 13

Compression:

Stored size: 902 Bytes

Contents

$:.unshift(::File.dirname(__FILE__))
$:.unshift(::File.dirname(__FILE__) + "/../lib")

# Test dependencies
%w(fakeweb right_http_connection matchy shoulda).each do |dep|
  $LOAD_PATH.unshift(File.join(File.dirname(__FILE__),'..', 'vendor/gems', dep, 'lib'))
  # require "#{dep}"
end

require "test_methods"

modify_env_with_hash(
  "EC2_ACCESS_KEY" => "fake_access_key",
  "EC2_SECRET_KEY" => "fake_secret_key",
  "EC2_PRIVATE_KEY" => ::File.dirname(__FILE__) + "/fixtures/keys/test_key",
  "EC2_CERT"        => ::File.dirname(__FILE__) + "/fixtures/keys/test_key",
  "EC2_USER_ID"     => '1234567890'
  )

require 'poolparty'
require "rubygems"
require "test/unit"
# TODO: Rip out shoulda
require "shoulda"
require 'mocha' # ARG!  don't want to introduce additional test dependencies, but FakeWeb can only handle one fake post per URL!!!

require 'git-style-binary/command'

GitStyleBinary.run = true

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
poolparty-1.6.9 test/test_helper.rb
poolparty-1.6.8 test/test_helper.rb
poolparty-1.6.7 test/test_helper.rb
poolparty-1.6.6 test/test_helper.rb
poolparty-1.6.5 test/test_helper.rb
poolparty-1.6.4 test/test_helper.rb
poolparty-1.6.3 test/test_helper.rb
poolparty-1.6.2 test/test_helper.rb
poolparty-1.6.1 test/test_helper.rb
poolparty-1.6.0 test/test_helper.rb
poolparty-1.5.0 test/test_helper.rb
poolparty-1.4.8 test/test_helper.rb
poolparty-1.4.7 test/test_helper.rb