Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
spec
/
integration
/
Filename :
locale_selection_spec.rb
back
Copy
# frozen_string_literal: true # # Copyright (C) 2011 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see <http://www.gnu.org/licenses/>. # describe "locale_selection" do before do allow(I18n).to receive(:available_locales).and_return(%i[en es fr]) end it "sets the locale when authenticated" do course_with_teacher(active_all: true, user: user_with_pseudonym) user_session(@user, @pseudonym) @user.update_attribute :locale, "es" @pseudonym.reload @domain_root_account = Account.default allow(I18n).to receive(:locale=) get dashboard_url expect(response).to be_successful expect(I18n).to have_received(:locale=).with("es").at_least(:once) end it "sets the locale when not authenticated" do account = Account.default account.update_attribute :default_locale, "fr" allow(I18n).to receive(:locale=) get canvas_login_url expect(response).to be_successful expect(I18n).to have_received(:locale=).with("fr").at_least(:once) end end