aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_plugin_importing.py
diff options
context:
space:
mode:
authorLibravatarAgustin Henze <tin@sluc.org.ar>2013-02-13 18:35:39 -0300
committerLibravatarAgustin Henze <tin@sluc.org.ar>2013-02-13 18:35:39 -0300
commita40930043121a4b60de8526d58417761a54ab718 (patch)
tree383c5cf8e320761ee942619282fe51be625179a7 /tests/test_plugin_importing.py
parent9c5708cc92af894e414bc76ee35ec2230de5d288 (diff)
Imported Upstream version 5.2upstream/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