2015-10-11 17:41:23 +08:00
|
|
|
require 'rails_helper'
|
2013-06-11 23:39:55 +08:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2013-06-23 13:07:25 +08:00
|
|
|
describe 'values' do
|
2013-06-11 23:39:55 +08:00
|
|
|
it 'returns all the locales that we have translations for' do
|
2017-11-16 00:20:04 +08:00
|
|
|
expect(LocaleSiteSetting.values.map { |x| x[:value] }).to include(*Dir.glob(File.join(Rails.root, 'config', 'locales', 'client.*.yml')).map { |x| x.split('.')[-2] })
|
2013-06-11 23:39:55 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|