Sha256: b5aeb56b88587d8824f55914f96f17e88752d4b1c42319bc243f831d6662e558

Contents?: true

Size: 574 Bytes

Versions: 6

Compression:

Stored size: 574 Bytes

Contents

$:.unshift File.expand_path('..', File.dirname(__FILE__))
ENV['LOOKSEE_METHOD'] = nil

require 'rspec'
require 'pry' unless ENV['CI']

require 'looksee'

require 'rbconfig'
require 'set'
require 'fileutils'

ROOT = File.expand_path('..', File.dirname(__FILE__))

Dir['spec/support/*.rb'].each do |path|
  require path
end

NATIVE_ADAPTER = Looksee.adapter

RSpec.configure do |config|
  config.extend TestAdapter::Mixin

  config.expect_with :rspec do |c|
    c.syntax = [:should, :expect]
  end

  config.mock_with :rspec do |c|
    c.syntax = [:should, :expect]
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
looksee-5.0.0 spec/spec_helper.rb
looksee-4.4.0 spec/spec_helper.rb
looksee-4.2.0 spec/spec_helper.rb
looksee-4.1.0 spec/spec_helper.rb
looksee-4.0.0-universal-java-1.8 spec/spec_helper.rb
looksee-4.0.0 spec/spec_helper.rb