mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: allow_uppercase_posts didn't work for topic titles
This commit is contained in:
@@ -180,6 +180,11 @@ describe TextCleaner do
|
||||
expect(TextCleaner.clean_title("HELLO THERE")).to eq("Hello there")
|
||||
end
|
||||
|
||||
it "doesn't replace all upper case text when uppercase posts are allowed" do
|
||||
SiteSetting.allow_uppercase_posts = true
|
||||
expect(TextCleaner.clean_title("HELLO THERE")).to eq("HELLO THERE")
|
||||
end
|
||||
|
||||
it "capitalizes first letter" do
|
||||
expect(TextCleaner.clean_title("hello there")).to eq("Hello there")
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user