blob: aaba11390e7f99af8b06a4deb09e0cdfcb6ca1a6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# -*- coding: utf-8 -*-
from __future__ import unicode_literals, absolute_import
# This code is so you can run the samples without installing the package,
# and should be before any import touching nikola, in any file under tests/
import os
import sys
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
import unittest
class ImportPluginsTest(unittest.TestCase):
def test_importing_command_import_wordpress(self):
import nikola.plugins.command.import_wordpress # NOQA
def test_importing_compile_rest(self):
import nikola.plugins.compile.rest # NOQA
def test_importing_plugin_compile_markdown(self):
import nikola.plugins.compile.markdown # NOQA
|