Navigation Menu

Skip to content

Commit

Permalink
Use installed plugin by default
Browse files Browse the repository at this point in the history
  • Loading branch information
kenhys committed Apr 2, 2015
1 parent 4437782 commit 9e7bc34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test-plugin.rb
Expand Up @@ -22,9 +22,9 @@ class PluginTest < Test::Unit::TestCase

def test_register
context = Groonga::Context.default
assert_nil(context["suggest"])
context.register_plugin("suggest/suggest")
assert_not_nil(context["suggest"])
assert_nil(context["TokenFilterStopWord"])
context.register_plugin("token_filters/stop_word")
assert_not_nil(context["TokenFilterStopWord"])
end

def test_system_plugins_dir
Expand Down

0 comments on commit 9e7bc34

Please sign in to comment.