Sha256: a46a82dccdd12f146b8858c7bd794dfabee9ad576613465374e2dba05c6eb951
Contents?: true
Size: 726 Bytes
Versions: 43
Compression:
Stored size: 726 Bytes
Contents
require 'spec_helper' describe "setting locale", type: :feature do stub_authorization! before do ActionView::Base.raise_on_missing_translations = false I18n.locale = I18n.default_locale I18n.backend.store_translations(:fr, date: { month_names: [] }, spree: { admin: { tab: { orders: "Ordres" } }, listing_orders: "Ordres" }) Spree::Backend::Config[:locale] = "fr" end after do I18n.locale = I18n.default_locale Spree::Backend::Config[:locale] = "en" ActionView::Base.raise_on_missing_translations = true end it "should be in french" do visit spree.admin_path expect(page).to have_content("Ordres") end end
Version data entries
43 entries across 43 versions & 1 rubygems