summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
blob: 7c07c4a1a81de7c286755a199b5950e441c4f3bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
if ENV['CI']
  require 'codeclimate-test-reporter'
  CodeClimate::TestReporter.start
end

require 'pry'

require 'rspec'
require 'hashie'

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