Sha256: 71428b73fbee77427f4c15bb16777a7c121de0cab5c79a3e99c873458aacdf15

Contents?: true

Size: 410 Bytes

Versions: 4

Compression:

Stored size: 410 Bytes

Contents

require 'rubygems'
require 'bundler/setup'

require 'pry'
require 'license_finder'
require 'rspec'
require 'webmock/rspec'

Dir[File.join(File.dirname(__FILE__), 'support', '**', '*.rb')].each do |file|
  require file
end

RSpec.configure do |config|
  config.mock_with :rspec
end

RSpec.configure do |config|
  config.around(:each) do |example|
    DB.transaction(rollback: :always) { example.run }
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
license_finder-0.9.3-java spec/spec_helper.rb
license_finder-0.9.3 spec/spec_helper.rb
license_finder-0.9.2-java spec/spec_helper.rb
license_finder-0.9.2 spec/spec_helper.rb