mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Add support for enum site settings that render as a dropdown; use a dropdown for default_locale
This commit is contained in:
21
spec/models/locale_site_setting_spec.rb
Normal file
21
spec/models/locale_site_setting_spec.rb
Normal file
@@ -0,0 +1,21 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe LocaleSiteSetting do
|
||||
|
||||
describe 'valid_value?' do
|
||||
it 'returns true for a locale that we have translations for' do
|
||||
expect(LocaleSiteSetting.valid_value?('en')).to eq(true)
|
||||
end
|
||||
|
||||
it 'returns false for a locale that we do not have translations for' do
|
||||
expect(LocaleSiteSetting.valid_value?('swedish-chef')).to eq(false)
|
||||
end
|
||||
end
|
||||
|
||||
describe 'all_values' do
|
||||
it 'returns all the locales that we have translations for' do
|
||||
expect(LocaleSiteSetting.all_values.sort).to eq(Dir.glob( File.join(Rails.root, 'config', 'locales', 'client.*.yml') ).map {|x| x.split('.')[-2]}.sort)
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user