Sha256: 2dec87c601ab46e92c56958532a0f031aa0930d82a519dafeea45b7593278f34

Contents?: true

Size: 300 Bytes

Versions: 5

Compression:

Stored size: 300 Bytes

Contents

ENV['TEST'] = '1'

require "pp"

root = File.expand_path('../../', __FILE__)
require "#{root}/lib/lono-cfn"

module Helpers
  def execute(cmd)
    puts "Running: #{cmd}" if ENV['DEBUG']
    out = `#{cmd}`
    puts out if ENV['DEBUG']
    out
  end
end

RSpec.configure do |c|
  c.include Helpers
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
lono-cfn-1.1.0 spec/spec_helper.rb
lono-cfn-1.0.4 spec/spec_helper.rb
lono-cfn-1.0.2 spec/spec_helper.rb
lono-cfn-1.0.1 spec/spec_helper.rb
lono-cfn-1.0.0 spec/spec_helper.rb