Sha256: f5de8c5535ed028af47d6292ecf3f84dfbcda90a50e7eb813402c049966a95ad
Contents?: true
Size: 968 Bytes
Versions: 16
Compression:
Stored size: 968 Bytes
Contents
# -*- encoding: utf-8 -*- # require 'coveralls' Coveralls.wear! SimpleCov.start $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'rspec' require 'timecop' require 'pry' require 'tempfile' require 'brcobranca' require 'rghost' # Requires supporting files with custom matchers and macros, etc, # in ./support/ and its subdirectories. Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f } RSpec.configure do |config| config.disable_monkey_patching! config.order = :random Kernel.srand config.seed config.filter_run focus: true config.run_all_when_everything_filtered = true config.expect_with :rspec do |expectations| expectations.syntax = :expect end config.mock_with :rspec do |mocks| mocks.syntax = :expect mocks.verify_partial_doubles = true end config.default_formatter = 'doc' if config.files_to_run.one? end RGhost::Config.config_platform
Version data entries
16 entries across 16 versions & 1 rubygems