From 7bb4ab417c0275fcca03abe338b3b81c17b17a6e Mon Sep 17 00:00:00 2001 From: Azul Date: Tue, 4 Feb 2014 15:47:55 +0100 Subject: prevent 409s and 412 and reraise them in tests Including tests that ensure this --- test/test_helper.rb | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'test/test_helper.rb') diff --git a/test/test_helper.rb b/test/test_helper.rb index da8b88c..5a3b509 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,13 +1,18 @@ require 'rubygems' require 'minitest/autorun' +require 'pathname' -BASE_DIR = File.expand_path('../..', __FILE__) -$:.unshift File.expand_path('lib', BASE_DIR) +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' -- cgit v1.2.3