Sha256: 5e29c68bc0cc5c80ff06e4bb5db26e33bdac707228297f710bd9f70776fb93d5

Contents?: true

Size: 470 Bytes

Versions: 5

Compression:

Stored size: 470 Bytes

Contents

$:.unshift(File.expand_path("../../lib", __FILE__))

require 'tempfile'
require 'eb_deployer'
require 'aws_driver_stubs'
require 'minitest/autorun'
require 'minitest/pride'


class MiniTest::Unit::TestCase
  def sample_file(file_name, content='s' * 100)
    path = File.join('/tmp', file_name)
    File.open(path, 'w') { |f| f << content }
    path
  end

  def eb_envname(app_name, env_name)
    EbDeployer::Environment.unique_ebenv_name(app_name, env_name)
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
eb_deployer-0.3.6 test/test_helper.rb
eb_deployer-0.3.5 test/test_helper.rb
eb_deployer-0.3.4 test/test_helper.rb
eb_deployer-0.3.3 test/test_helper.rb
eb_deployer-0.3.2 test/test_helper.rb