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