Sha256: 9f17007ca6b343a1af9e19fa8df1111511351e50191cbde66dc97258f7f90095

Contents?: true

Size: 442 Bytes

Versions: 5

Compression:

Stored size: 442 Bytes

Contents

# encoding: binary

require 'bundler/setup'
Bundler.require(:test)

begin
  require 'simplecov'

  SimpleCov.start do
    add_filter '/spec/'
  end
rescue LoadError
end

$: << File.expand_path('../../lib', __FILE__)

require "amq/protocol"

puts "Running on #{RUBY_VERSION}"

RSpec.configure do |config|
  config.include AMQ::Protocol

  config.filter_run_when_matching :focus

  config.disable_monkey_patching!

  config.warnings = true
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
amq-protocol-2.3.2 spec/spec_helper.rb
amq-protocol-2.3.1 spec/spec_helper.rb
amq-protocol-2.3.0 spec/spec_helper.rb
amq-protocol-2.3.0.rc2 spec/spec_helper.rb
amq-protocol-2.3.0.rc1 spec/spec_helper.rb