1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: Remove bundler usage from test
Remove the usage of Bundler from test helper file
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/tests/helper.rb
+++ b/tests/helper.rb
@@ -1,14 +1,6 @@
-begin
- require "codeclimate-test-reporter"
- CodeClimate::TestReporter.start
-rescue LoadError => e
- $stderr.puts "not recording test coverage: #{e.inspect}"
-end
-
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
require 'fog/local'
-Bundler.require(:test)
require 'tmpdir'
Excon.defaults.merge!(:debug_request => true, :debug_response => true)
|