diff options
author | Matt Jankowski <mjankowski@thoughtbot.com> | 2017-06-09 12:09:37 -0400 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-06-09 18:09:37 +0200 |
commit | 022008a2a6fb5fe872b04009e1029e2a904bafcc (patch) | |
tree | b660e05c42166a38eb48b0daf095eb37fb79cf4c /spec/lib | |
parent | a3715598cc888db462205d74a8b83e57e885dec8 (diff) |
Language detection defaults to nil (#3666)
* Default to nil for statuses.language * Language detection defaults to nil instead of instance UI default
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/language_detector_spec.rb | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/spec/lib/language_detector_spec.rb b/spec/lib/language_detector_spec.rb index ace7a326a..ec39cb6a0 100644 --- a/spec/lib/language_detector_spec.rb +++ b/spec/lib/language_detector_spec.rb @@ -43,7 +43,7 @@ describe LanguageDetector do describe 'to_iso_s' do it 'detects english language for basic strings' do strings = [ - "Hello and welcome to mastodon", + "Hello and welcome to mastodon how are you today?", "I'd rather not!", "a lot of people just want to feel righteous all the time and that's all that matters", ] @@ -62,20 +62,20 @@ describe LanguageDetector do end describe 'when language can\'t be detected' do - it 'uses default locale when sent an empty document' do + it 'uses nil when sent an empty document' do result = described_class.new('').to_iso_s - expect(result).to eq :en + expect(result).to eq nil end describe 'because of a URL' do - it 'uses default locale when sent just a URL' do + it 'uses nil when sent just a URL' do string = 'http://example.com/media/2kFTgOJLXhQf0g2nKB4' cld_result = CLD3::NNetLanguageIdentifier.new(0, 2048).find_language(string) expect(cld_result).not_to eq :en result = described_class.new(string).to_iso_s - expect(result).to eq :en + expect(result).to eq nil end end @@ -87,20 +87,20 @@ describe LanguageDetector do expect(result).to eq :fr end - it 'uses default locale when account is present but has no locale' do + it 'uses nil when account is present but has no locale' do account = double(user_locale: nil) result = described_class.new('', account).to_iso_s - expect(result).to eq :en + expect(result).to eq nil end end describe 'with an `en` default locale' do - it 'uses the default locale' do + it 'uses nil for undetectable string' do string = '' result = described_class.new(string).to_iso_s - expect(result).to eq :en + expect(result).to eq nil end end @@ -112,11 +112,11 @@ describe LanguageDetector do I18n.default_locale = before end - it 'uses the default locale' do + it 'uses nil for undetectable string' do string = '' result = described_class.new(string).to_iso_s - expect(result).to eq :ja + expect(result).to eq nil end end end |