Description: disable bundler during tests execution
 Also require rspec-its in spec helper in order to make 'its' available in all
 test files.
Author: Lucas Kanashiro <kanashiro@debian.org>
Last-Updated: 2018-04-27

--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,8 +1,5 @@
 # encoding: binary
 
-require 'bundler/setup'
-Bundler.require(:test)
-
 begin
   require 'simplecov'
 
@@ -16,6 +13,8 @@ $: << File.expand_path('../../lib', __FI
 
 require "amq/protocol"
 
+require "rspec/its"
+
 puts "Running on #{RUBY_VERSION}"
 
 RSpec.configure do |config|
