Sha256: 3435e582d6692da73a5627dbab544c30da3dfbb14154ff650e7b86a4a29deb04

Contents?: true

Size: 866 Bytes

Versions: 1

Compression:

Stored size: 866 Bytes

Contents

SHOESSPEC_ROOT = File.expand_path('..', __FILE__)
$LOAD_PATH << File.join(SHOESSPEC_ROOT)
$LOAD_PATH << File.join(SHOESSPEC_ROOT, "../lib")

# loaded again when executing DSL specs with the SWT backend, therefore
# we souldn't start the test coverage again or override the command as it'd
# mess up merging
unless defined?(SimpleCov)
  require_relative '../../spec/code_coverage'
  SimpleCov.command_name 'spec:shoes'
end

require 'rspec'
require 'rspec/its'
require 'pry'
require 'shoes/core'
require 'shoes/ui/cli'
require 'fileutils'
require 'shoes/helpers/fake_element'
require 'shoes/helpers/fake_absolute_element'
require 'shoes/helpers/inspect_helpers'

require 'webmock/rspec'
WebMock.disable_net_connect!(allow: "codeclimate.com")

shared_examples = File.expand_path('../shoes/shared_examples/**/*.rb', __FILE__)
Dir[shared_examples].each { |f| require f }

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
shoes-core-4.0.0.pre7 spec/spec_helper.rb