File: bundler

package info (click to toggle)
ruby-fog-local 0.6.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 196 kB
  • sloc: ruby: 696; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 596 bytes parent folder | download | duplicates (3)
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)