Sha256: 0f62c07aad7957357bf05b1fbb2849e78ae23cb828c5cc7b3dc9ac964730d238
Contents?: true
Size: 272 Bytes
Versions: 9
Compression:
Stored size: 272 Bytes
Contents
# frozen_string_literal: true RSpec.configure do |config| config.before(:suite) do I18n.config.enforce_available_locales = false end config.around(:each) do |example| previous_locale = I18n.locale example.run I18n.locale = previous_locale end end
Version data entries
9 entries across 9 versions & 1 rubygems