diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-01-27 14:59:22 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-02-19 21:15:56 +0100 |
commit | 57aa9e060ef7214f8b822fa32b40bb728482adce (patch) | |
tree | 5721144252be73832b937bade4520b3de7e735bb /tests/unit | |
parent | e8159298ad4b607e8daee89406de2434ee9c22e4 (diff) | |
download | weechat-57aa9e060ef7214f8b822fa32b40bb728482adce.zip |
spell: rename "aspell" plugin to "spell" (issue #1299)
The following things have been renamed:
- file aspell.conf -> spell.conf
- options aspell.* -> spell.*
- bar item aspell_dict -> spell_dict
- bar item and local variable aspell_suggest -> spell_suggest
- info aspell_dict -> spell_dict
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/test-plugins.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test-plugins.cpp b/tests/unit/test-plugins.cpp index ef8bf2897..a6c637c2c 100644 --- a/tests/unit/test-plugins.cpp +++ b/tests/unit/test-plugins.cpp @@ -52,7 +52,6 @@ TEST(Plugins, Loaded) /* check that all plugins are properly loaded */ CHECK(hdata_search (hdata, plugins, "${plugin.name} == alias", 1)); - CHECK(hdata_search (hdata, plugins, "${plugin.name} == aspell", 1)); CHECK(hdata_search (hdata, plugins, "${plugin.name} == buflist", 1)); CHECK(hdata_search (hdata, plugins, "${plugin.name} == charset", 1)); CHECK(hdata_search (hdata, plugins, "${plugin.name} == exec", 1)); @@ -69,6 +68,7 @@ TEST(Plugins, Loaded) CHECK(hdata_search (hdata, plugins, "${plugin.name} == relay", 1)); CHECK(hdata_search (hdata, plugins, "${plugin.name} == ruby", 1)); CHECK(hdata_search (hdata, plugins, "${plugin.name} == script", 1)); + CHECK(hdata_search (hdata, plugins, "${plugin.name} == spell", 1)); CHECK(hdata_search (hdata, plugins, "${plugin.name} == tcl", 1)); CHECK(hdata_search (hdata, plugins, "${plugin.name} == trigger", 1)); CHECK(hdata_search (hdata, plugins, "${plugin.name} == xfer", 1)); |