Sha256: d88720369fade1c10b79cfece6a69ab48c672d1f56a118d55f5329559e92c65c
Contents?: true
Size: 496 Bytes
Versions: 2
Compression:
Stored size: 496 Bytes
Contents
# frozen_string_literal: true require 'rspec' require 'simplecov' require 'simplecov-cobertura' SimpleCov.start do add_filter 'spec' end SimpleCov.formatters = [ SimpleCov::Formatter::HTMLFormatter, SimpleCov::Formatter::CoberturaFormatter, ] require 'omniauth-multipassword' Dir[File.expand_path('spec/support/**/*.rb')].sort.each {|f| require f } RSpec.configure do |config| config.order = 'random' config.before do OmniAuth.config.logger = Logger.new(IO::NULL) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
omniauth-multipassword-2.1.0 | spec/spec_helper.rb |
omniauth-multipassword-2.0.1 | spec/spec_helper.rb |