Sha256: 8c745d986af58495b1e4e0923c025d5f972acda33f5937bdc2c3e10a07db4340

Contents?: true

Size: 468 Bytes

Versions: 10

Compression:

Stored size: 468 Bytes

Contents

require 'simplecov'
SimpleCov.start do
  add_filter "/spec/"
end

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

require 'lib/shuttle'

def fixture_path(filename=nil)
  path = File.expand_path("../fixtures", __FILE__)
  filename.nil? ? path : File.join(path, filename)
end

def fixture(file)
  File.read(File.join(fixture_path, file))
end

def fake_run(command, output, exit_code=0, duration=0)
  Net::SSH::SessionCommand.new(command, output, exit_code, duration)
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
shuttle-deploy-0.2.0.beta15 spec/spec_helper.rb
shuttle-deploy-0.2.0.beta14 spec/spec_helper.rb
shuttle-deploy-0.2.0.beta13 spec/spec_helper.rb
shuttle-deploy-0.2.0.beta12 spec/spec_helper.rb
shuttle-deploy-0.2.0.beta11 spec/spec_helper.rb
shuttle-deploy-0.2.0.beta10 spec/spec_helper.rb
shuttle-deploy-0.2.0.beta9 spec/spec_helper.rb
shuttle-deploy-0.2.0.beta7 spec/spec_helper.rb
shuttle-deploy-0.2.0.beta6 spec/spec_helper.rb
shuttle-deploy-0.2.0.beta5 spec/spec_helper.rb