Sha256: b5181ad4006fa1383cff4efd4791c888a9be18d88c574fc964944d9456b60bdc

Contents?: true

Size: 555 Bytes

Versions: 1

Compression:

Stored size: 555 Bytes

Contents

require 'rspec'
require 'simplecov'

if ENV['CI'] || (defined?(:RUBY_ENGINE) && RUBY_ENGINE != 'rbx')
  begin
    require 'codeclimate-test-reporter'
    CodeClimate::TestReporter.start
  rescue LoadError
  end
  SimpleCov.start
end

require 'omniauth-multipassword'

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

# Disable omniauth logger
class NullLogger < Logger
  def initialize(*args)
  end

  def add(*args, &block)
  end
end

OmniAuth.config.logger = NullLogger.new

RSpec.configure do |config|
  config.order = 'random'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
omniauth-multipassword-0.4.2 spec/spec_helper.rb