Sha256: 7ebeda05d43844127866c1ab8329bbce684b967af9a764a0f98a0f56e0a0bd5d

Contents?: true

Size: 544 Bytes

Versions: 5

Compression:

Stored size: 544 Bytes

Contents

# frozen_string_literal: true

require 'aruba/rspec'

if ENV['CFNDSL_COV']
  require 'simplecov'

  SimpleCov.start do
    add_group 'Code', 'lib'
    add_group 'Test', 'spec'
  end
end

require 'cfndsl/globals'
CfnDsl.specification_file File.expand_path('../lib/cfndsl/aws/resource_specification.json', __dir__)
# use local fixture for tests
require 'cfndsl'
require 'cfnlego'

bindir = File.expand_path('../bin', __dir__)
ENV['PATH'] = [ENV['PATH'], bindir].join(':')

Dir[File.expand_path('support/**/*.rb', __dir__)].each { |f| require f }

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cfndsl-0.17.4 spec/spec_helper.rb
cfndsl-0.17.3 spec/spec_helper.rb
cfndsl-0.17.2 spec/spec_helper.rb
cfndsl-0.17.1 spec/spec_helper.rb
cfndsl-0.17.0 spec/spec_helper.rb