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

Testmsquaredc   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 22
rs 10
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A teardown_class() 0 3 1
A test_something() 0 2 1
A setup_class() 0 3 1
A test_command_line_interface() 0 9 1
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