Sha256: 37d21f4bd164f1b5be9e3bc21fe1633fb5b284053d1f36c74c30fb7b0b1a59c7
Contents?: true
Size: 668 Bytes
Versions: 4
Compression:
Stored size: 668 Bytes
Contents
# frozen_string_literal: true require 'simplecov' require 'simplecov_small_badge' require 'byebug' require 'timecop' SimpleCov.start do add_filter '/spec/' module SimpleCovSmallBadge class Formatter end end SimpleCov.formatters = SimpleCov::Formatter::MultiFormatter.new( [ SimpleCov::Formatter::HTMLFormatter, SimpleCovSmallBadge::Formatter ] ) end SimpleCov.minimum_coverage 100 require 'rubygems' require 'bundler/setup' require 'rabbitmq_client' Dir[File.join('./spec/support/*.rb')].each { |f| require f } SimpleCovSmallBadge.configure do |config| config.rounded_border = true end RSpec.configure do |config| end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
rabbitmq_client-0.0.3 | spec/spec_helper.rb |
rabbitmq_client-0.0.2 | spec/spec_helper.rb |
rabbitmq_client-0.0.1 | spec/spec_helper.rb |
rabbitmq_client-0.0.0.pre | spec/spec_helper.rb |