summaryrefslogtreecommitdiff
path: root/test/test_helper.rb
blob: 5a3b509914ab854289683333521b40befbd8ff61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'rubygems'
require 'minitest/autorun'
require 'pathname'

unless defined? BASE_DIR
  BASE_DIR = Pathname.new(__FILE__) + '../..'
end

$:.unshift BASE_DIR + 'lib'

require 'mocha/setup'

require 'tapicero/version'
Tapicero::CONFIGS << "test/config.yaml"
Tapicero::RERAISE = true
require 'tapicero'


require_relative 'support/integration_test'