Testmsquaredc.teardown_class()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
c 0
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
12
class Testmsquaredc(object):
13
14
    @classmethod
15
    def setup_class(cls):
16
        pass
17
18
    def test_something(self):
19
        pass
20
21
    def test_command_line_interface(self):
22
        # runner = CliRunner()
23
        # result = runner.invoke(cli.main)
24
        # assert result.exit_code == 0
25
        # assert 'msquaredc.cli.main' in result.output
26
        # help_result = runner.invoke(cli.main, ['--help'])
27
        # assert help_result.exit_code == 0
28
        # assert '--help  Show this message and exit.' in help_result.output
29
        pass
30
31
    @classmethod
32
    def teardown_class(cls):
33
        pass
34