Sha256: 96965d549a582970b560e96ef4a5159bd96f5ed6398097af7ac66fae29817b7f

Contents?: true

Size: 426 Bytes

Versions: 3

Compression:

Stored size: 426 Bytes

Contents

# frozen_string_literal: true

require 'bundler/setup'

Bundler.require(:default, :test)

require(Pathname.new(__FILE__).dirname + '../lib/underlay').expand_path

Dir['./spec/support/**/*.rb'].each { |file| require file }

RSpec.configure do |config|
  config.include UnderlayTestHelpers

  config.before(:all) do
    add_fakes_to_path
    create_tmp_directory
  end

  config.before(:each) do
    FakeGithub.clear!
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
underlay-2.0 spec/spec_helper.rb
underlay-1.52.1 spec/spec_helper.rb
underlay-1.50.1 spec/spec_helper.rb