Completed
Push — master ( 9132be...b940e3 )
by Jerome
01:12
created

Testpycode.teardown_class()   A

Complexity

Conditions 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
4
"""
5
test_msquaredc
6
----------------------------------
7
8
Tests for `msquaredc` module.
9
"""
10
11
from click.testing import CliRunner
12
13
from msquaredc import cli
14
15
16
class Testmsquaredc(object):
17
18
    @classmethod
19
    def setup_class(cls):
20
        pass
21
22
    def test_something(self):
23
        pass
24
25
    def test_command_line_interface(self):
26
        # runner = CliRunner()
27
        # result = runner.invoke(cli.main)
28
        # assert result.exit_code == 0
29
        # assert 'msquaredc.cli.main' in result.output
30
        # help_result = runner.invoke(cli.main, ['--help'])
31
        # assert help_result.exit_code == 0
32
        # assert '--help  Show this message and exit.' in help_result.output
33
        pass
34
35
    @classmethod
36
    def teardown_class(cls):
37
        pass
38
39