Sha256: b371ae1f53ab259c7d49dad4f777984ce245402334e9b3738383fbd75a01f082
Contents?: true
Size: 1.49 KB
Versions: 102
Compression:
Stored size: 1.49 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, :accept_nil => true) end private def assert_equal_procedure(expected_name, id, options={}) procedure = Groonga::Context.default[id] expected_name = nil if procedure.nil? and options[:accept_nil] assert_equal(expected_name, procedure ? procedure.name : procedure) end end
Version data entries
102 entries across 102 versions & 2 rubygems