1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-23 17:01:13 +00:00

shorten long line of test/unit/search_test.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20495 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-11-26 14:45:58 +00:00
parent f6152449df
commit 9bbfc61a94

View File

@ -188,15 +188,18 @@ class SearchTest < ActiveSupport::TestCase
end
def test_fetcher_should_handle_accents_in_phrases
f = Redmine::Search::Fetcher.new('No special chars "in a phrase"', User.anonymous, %w(issues), Project.all)
f = Redmine::Search::Fetcher.new('No special chars "in a phrase"',
User.anonymous, %w(issues), Project.all)
assert_equal ['No', 'special', 'chars', 'in a phrase'], f.tokens
f = Redmine::Search::Fetcher.new('Special chars "in a phrase Öö"', User.anonymous, %w(issues), Project.all)
f = Redmine::Search::Fetcher.new('Special chars "in a phrase Öö"',
User.anonymous, %w(issues), Project.all)
assert_equal ['Special', 'chars', 'in a phrase Öö'], f.tokens
end
def test_fetcher_should_exclude_single_character_tokens_except_for_chinese_characters
f = Redmine::Search::Fetcher.new('ca f é 漢 あ 한', User.anonymous, %w(issues), Project.all)
f = Redmine::Search::Fetcher.new('ca f é 漢 あ 한',
User.anonymous, %w(issues), Project.all)
assert_equal ['ca', '漢'], f.tokens
end