Allow Chinese characters in Topic titles

This commit is contained in:
Chris Hunt
2013-05-26 13:56:42 -07:00
parent 74b661317c
commit 13c4266c74
2 changed files with 6 additions and 1 deletions

View File

@ -33,6 +33,11 @@ describe "A record validated with QualityTitleValidator" do
topic.should be_valid
end
it 'allows Chinese characters' do
topic.title = '现在发现使用中文标题没法发帖子了'
topic.should be_valid
end
it "allows anything in a private message" do
topic.stubs(:private_message? => true)
[short_title, long_title, xxxxx_title].each do |bad_title|