Sha256: 63ef7e62d0aacac9034eee4da95ebc1d8763728d4b62599b93e64f649cfb2dbd
Contents?: true
Size: 610 Bytes
Versions: 3
Compression:
Stored size: 610 Bytes
Contents
# frozen_string_literal: true ENV['RAILS_ENV'] = 'test' require 'simplecov' if ENV['CI'] require 'simplecov-cobertura' SimpleCov.formatter = SimpleCov::Formatter::CoberturaFormatter end SimpleCov.start require File.expand_path("../dummy/config/environment.rb", __FILE__) require 'rspec/rails' require 'invisible_captcha' RSpec.configure do |config| config.include ActionDispatch::ContentSecurityPolicy::Request, type: :helper config.disable_monkey_patching! config.order = :random config.expect_with :rspec config.mock_with :rspec do |mocks| mocks.verify_partial_doubles = true end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
invisible_captcha-2.3.0 | spec/spec_helper.rb |
invisible_captcha-2.2.0 | spec/spec_helper.rb |
invisible_captcha-2.1.0 | spec/spec_helper.rb |