aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_plugin_importing.py
diff options
context:
space:
mode:
authorLibravatarAgustin Henze <tin@sluc.org.ar>2013-02-13 18:35:40 -0300
committerLibravatarAgustin Henze <tin@sluc.org.ar>2013-02-13 18:35:40 -0300
commit75a865d635c5aa3eacea6f5baf12d752464db57c (patch)
tree0f2850fe296fc82226dd62e5646fecb3ee76b148 /tests/test_plugin_importing.py
parentf55a1d8df9d9e9154a8bbc886b9340f3d4201547 (diff)
parenta40930043121a4b60de8526d58417761a54ab718 (diff)
Merge tag 'upstream/5.2'
Upstream version 5.2
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