Sha256: 02c9e56ae4812a7dc983b19e4c7f512d55798317a32b107ba47479b9d2fe5ebf
Contents?: true
Size: 1.36 KB
Versions: 5
Compression:
Stored size: 1.36 KB
Contents
# Copyright (C) 2009 Kouhei Sutou <kou@clear-code.com> # # 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 ProcedureTest < Test::Unit::TestCase include GroongaTestUtils setup :setup_database def test_builtins assert_equal_procedure("TokenDelimit", Groonga::Procedure::DELIMIT) assert_equal_procedure("TokenUnigram", Groonga::Procedure::UNIGRAM) assert_equal_procedure("TokenBigram", Groonga::Procedure::BIGRAM) assert_equal_procedure("TokenTrigram", Groonga::Procedure::TRIGRAM) assert_equal_procedure("TokenMecab", Groonga::Procedure::MECAB) end private def assert_equal_procedure(expected_name, id) procedure = Groonga::Context.default[id] assert_equal(expected_name, procedure ? procedure.name : procedure) end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
groonga-0.0.7 | test/test-procedure.rb |
groonga-0.0.3 | test/test-procedure.rb |
groonga-0.0.4 | test/test-procedure.rb |
groonga-0.0.5 | test/test-procedure.rb |
groonga-0.0.6 | test/test-procedure.rb |