2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2014-08-27 07:38:03 -04:00
|
|
|
|
|
|
|
describe RTL do
|
|
|
|
|
|
|
|
let(:user) { Fabricate.build(:user) }
|
|
|
|
|
|
|
|
describe '.css_class' do
|
|
|
|
|
|
|
|
context 'user locale is allowed' do
|
|
|
|
before { SiteSetting.stubs(:allow_user_locale).returns(true) }
|
|
|
|
|
|
|
|
context 'user locale is RTL' do
|
|
|
|
before { user.stubs(:locale).returns('he') }
|
|
|
|
|
|
|
|
it 'returns rtl class' do
|
2015-01-05 11:04:23 -05:00
|
|
|
expect(RTL.new(user).css_class).to eq('rtl')
|
2014-08-27 07:38:03 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'user locale is not RTL' do
|
|
|
|
it 'returns empty class' do
|
2015-01-05 11:04:23 -05:00
|
|
|
expect(RTL.new(user).css_class).to eq('')
|
2014-08-27 07:38:03 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'user locale is not allowed' do
|
|
|
|
before { SiteSetting.stubs(:allow_user_locale).returns(false) }
|
|
|
|
|
|
|
|
context 'site default locale is RTL' do
|
|
|
|
before { SiteSetting.stubs(:default_locale).returns('he') }
|
|
|
|
|
|
|
|
it 'returns rtl class' do
|
2015-01-05 11:04:23 -05:00
|
|
|
expect(RTL.new(user).css_class).to eq('rtl')
|
2014-08-27 07:38:03 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'site default locale is LTR' do
|
|
|
|
before { SiteSetting.stubs(:default_locale).returns('en') }
|
|
|
|
|
|
|
|
context 'user locale is RTL' do
|
|
|
|
before { user.stubs(:locale).returns('he') }
|
|
|
|
|
|
|
|
it 'returns empty class' do
|
2015-01-05 11:04:23 -05:00
|
|
|
expect(RTL.new(user).css_class).to eq('')
|
2014-08-27 07:38:03 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|