blob: 1a610bf2cdf128badaa1036dafa59e34bd638fcb (
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 # NOQA
import unittest
class ImportPluginsTest(unittest.TestCase):
def test_importing_command_import_wordpress(self):
import nikola.plugins.command_import_wordpress # NOQA
def test_importing_task_sitemap(self):
import nikola.plugins.task_sitemap.sitemap_gen # NOQA
def test_importing_compile_rest(self):
import nikola.plugins.compile_rest # NOQA
|