Sha256: 1c0a13ba87846568c42588aab39393f46dbffca6c485558468cf1397c561d4aa

Contents?: true

Size: 578 Bytes

Versions: 3

Compression:

Stored size: 578 Bytes

Contents

require 'simplecov'
require 'itiel'

SimpleCov.start

TMP_DIR = File.expand_path("#{File.dirname(__FILE__)}/../tmp")
Dir.mkdir(TMP_DIR) unless File.exist?(TMP_DIR)

log = Logger.new("#{File.dirname(__FILE__)}/../tmp/test.log")
log.level = Logger::INFO
Itiel::Logger.logger = log

RSpec.configure do |config|
  config.expect_with :rspec do |expectations|
    expectations.include_chain_clauses_in_custom_matcher_descriptions = true
  end

  config.mock_with :rspec do |mocks|
    mocks.verify_partial_doubles = true
  end

  config.order = :random
  # config.warnings = true
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
itiel-0.1.2 spec/spec_helper.rb
itiel-0.1.1 spec/spec_helper.rb
itiel-0.1.0 spec/spec_helper.rb