Sha256: 604e7907a729677a61373d3613675428f472899aec12c6412e39cd2036fd7747

Contents?: true

Size: 604 Bytes

Versions: 1

Compression:

Stored size: 604 Bytes

Contents

# encoding: utf-8

$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', 'lib')

require 'codeclimate-test-reporter'
CodeClimate::TestReporter.start

require 'simplecov'
SimpleCov.start

require 'rspec'
require 'rspec/given'

RSpec.configure do | config |
  config.expect_with :rspec do | c |
    c.syntax = :expect
  end
end

# Requires supporting files with custom matchers and macros, etc,
# in ./support/ and its subdirectories.
Dir[ "#{File.dirname(__FILE__)}/support/**/*.rb"].each do | each |
  require File.expand_path(each)
end

if ENV['TRAVIS']
  require 'coveralls'
  Coveralls.wear!
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pio-0.8.1 spec/spec_helper.rb