blob: bf20a6ce84348b5f680748f9d2693c6c074610ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
"""
Simple plugin tests.
More advanced tests should be in a separate module.
"""
def test_command_version():
"""Test `nikola version`."""
from nikola.plugins.command.version import CommandVersion
CommandVersion().execute()
def test_importing_plugin_task_galleries():
import nikola.plugins.task.galleries # NOQA
def test_importing_plugin_compile_pandoc():
import nikola.plugins.compile.pandoc # NOQA
|