Sha256: 146d763007a44eec7a940631606023fda2fc47a3f26c889337ff21738f6d152a
Contents?: true
Size: 1.9 KB
Versions: 1
Compression:
Stored size: 1.9 KB
Contents
# -*- coding: utf-8 -*- # Copyright (C) 2009 Kouhei Sutou <kou@clear-code.com> # Copyright (C) 2009 SHIDARA Yoji <dara@shidara.net> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License version 2.1 as published by the Free Software Foundation. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA class TableTestSelectNormalize < Test::Unit::TestCase include GroongaTestUtils setup :setup_database setup def setup_comments @comments = Groonga::Array.create(:name => "comments") @comments.define_column("content", "Text") @comments.define_column("created_at", "Time") terms = Groonga::PatriciaTrie.create(:name => "terms", :default_tokenizer => "TokenBigram", :key_normalize => true) terms.define_index_column("comment_content", @comments, :with_section => true, :source => "comments.content") @japanese_comment = @comments.add(:content => "うちのボロTVはまだ現役です", :created_at => Time.parse("2009-06-09")) end def test_select_query_with_japanese result = @comments.select("content:%ボロTV") assert_equal_select_result([@japanese_comment], result) end def test_select_query_only_in_japanese result = @comments.select("content:%うちの") assert_equal_select_result([@japanese_comment], result) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
groonga-0.0.7 | test/test-table-select-normalize.rb |