fix: Add missing switch_locale on DashboardController (#1631)

This commit is contained in:
Pranav Raj S 2021-01-09 01:43:17 +05:30 committed by GitHub
parent df27aab959
commit a9344fbf4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 3 deletions

View file

@ -1,5 +1,9 @@
class DashboardController < ActionController::Base
include SwitchLocale
before_action :set_global_config
around_action :switch_locale
layout 'vueapp'
def index; end

View file

@ -1,10 +1,20 @@
require 'rails_helper'
describe '/app', type: :request do
describe 'GET /app' do
describe '/app/login', type: :request do
context 'without DEFAULT_LOCALE' do
it 'renders the dashboard' do
get '/app'
get '/app/login'
expect(response).to have_http_status(:success)
end
end
context 'with DEFAULT_LOCALE' do
it 'renders the dashboard' do
ENV['DEFAULT_LOCALE'] = 'pt_BR'
get '/app/login'
expect(response).to have_http_status(:success)
expect(response.body).to include "selectedLocale: 'pt_BR'"
ENV['DEFAULT_LOCALE'] = 'en'
end
end
end