Sha256: 6b706b9591ae03d9908505b91a5183e6805d7cf4cba1d208112433220e5f3f75

Contents?: true

Size: 370 Bytes

Versions: 5

Compression:

Stored size: 370 Bytes

Contents

ENV['TEST'] = '1'

require "codeclimate-test-reporter"
CodeClimate::TestReporter.start

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-0.0.5 spec/spec_helper.rb
lono-cfn-0.0.4 spec/spec_helper.rb
lono-cfn-0.0.3 spec/spec_helper.rb
lono-cfn-0.0.2 spec/spec_helper.rb
lono-cfn-0.0.1 spec/spec_helper.rb