aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_plugin_importing.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_plugin_importing.py')
-rw-r--r--tests/test_plugin_importing.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/test_plugin_importing.py b/tests/test_plugin_importing.py
new file mode 100644
index 0000000..7e1e013
--- /dev/null
+++ b/tests/test_plugin_importing.py
@@ -0,0 +1,16 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals, absolute_import
+
+from context import nikola
+import unittest
+
+
+class ImportPluginsTest(unittest.TestCase):
+ def test_importing_command_import_wordpress(self):
+ import nikola.plugins.command_import_wordpress
+
+ def test_importing_task_sitemap(self):
+ import nikola.plugins.task_sitemap.sitemap_gen
+
+ def test_importing_compile_rest(self):
+ import nikola.plugins.compile_rest \ No newline at end of file