-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathtest_planemo.py
46 lines (35 loc) · 1.28 KB
/
test_planemo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
test_planemo
----------------------------------
Tests for `planemo` module.
"""
from .test_utils import CliTestCase
class TestPlanemo(CliTestCase):
def test_commands_have_help(self):
commands = self._cli.list_cmds()
for command in commands:
self._check_exit_code([command, "--help"])
def test_responds_to_desired_commands(self):
commands = self._cli.list_cmds()
def assert_responds_to(command):
assert command in commands, "No command %s" % command
assert_responds_to("config_init")
assert_responds_to("create_gist")
assert_responds_to("docker_build")
assert_responds_to("docker_shell")
assert_responds_to("lint")
assert_responds_to("normalize")
assert_responds_to("project_init")
assert_responds_to("serve")
assert_responds_to("shed_diff")
assert_responds_to("shed_download")
assert_responds_to("shed_upload")
assert_responds_to("syntax")
assert_responds_to("test")
assert_responds_to("tool_init")
def test_planemo_version_command(self):
self._check_exit_code(["--version"])
def test_planemo_help_command(self):
self._check_exit_code(["--help"])