Sha256: 72f3fec337d228bcceb4ccd12bce0e84a2ca9c717fcc20941416f84644b55b09

Contents?: true

Size: 468 Bytes

Versions: 5

Compression:

Stored size: 468 Bytes

Contents

# frozen_string_literal: true

# Bundler setup
require 'bundler'
Bundler.setup :default, :test

# Coverage
require 'coveralls'
Coveralls.wear! do
  add_filter 'spec'
end

require 'msgr'

Dir[File.expand_path('support/**/*.rb', __dir__)].sort.each {|f| require f }

RSpec.configure do |config|
  config.order = 'random'
  config.expect_with :rspec do |c|
    # Only allow expect syntax
    c.syntax = :expect
  end

  config.before do
    Msgr.logger = false
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
msgr-1.5.0 spec/unit/spec_helper.rb
msgr-1.4.0 spec/unit/spec_helper.rb
msgr-1.3.2 spec/unit/spec_helper.rb
msgr-1.3.1 spec/unit/spec_helper.rb
msgr-1.3.0 spec/unit/spec_helper.rb