discourse/spec/lib/rtl_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
RSpec.describe Rtl do
2014-08-27 07:38:03 -04:00
let(:user) { Fabricate.build(:user) }
describe ".css_class" do
context "when user locale is allowed" do
before { SiteSetting.allow_user_locale = true }
2014-08-27 07:38:03 -04:00
context "when user locale is RTL" do
before { user.locale = "he" }
2014-08-27 07:38:03 -04:00
it "returns rtl class" do
expect(Rtl.new(user).css_class).to eq("rtl")
2014-08-27 07:38:03 -04:00
end
end
context "when user locale is not RTL" do
2014-08-27 07:38:03 -04:00
it "returns empty class" do
expect(Rtl.new(user).css_class).to eq("")
2014-08-27 07:38:03 -04:00
end
end
end
context "when user locale is not allowed" do
before { SiteSetting.allow_user_locale = false }
2014-08-27 07:38:03 -04:00
context "when site default locale is RTL" do
before { SiteSetting.default_locale = "he" }
2014-08-27 07:38:03 -04:00
it "returns rtl class" do
expect(Rtl.new(user).css_class).to eq("rtl")
2014-08-27 07:38:03 -04:00
end
end
context "when site default locale is LTR" do
before { SiteSetting.default_locale = "en" }
2014-08-27 07:38:03 -04:00
context "when user locale is RTL" do
2014-08-27 07:38:03 -04:00
before { user.stubs(:locale).returns("he") }
it "returns empty class" do
expect(Rtl.new(user).css_class).to eq("")
2014-08-27 07:38:03 -04:00
end
end
end
end
end
end