summaryrefslogtreecommitdiffstats
path: root/tests/test_plugin_importing.py
blob: 7e1e0137f3e3f213d284c9059592260463780a08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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