TestDebacle   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 9
rs 10
wmc 4

2 Methods

Rating   Name   Duplication   Size   Complexity  
A test_disk_stuff() 0 2 2
A test_network_stuff() 0 2 2
1
"""Sample integration test module."""
2
# pylint: disable=no-self-use,missing-docstring
3
4
import unittest
5
6
from debacle import sample
7
8
9
class TestDebacle(unittest.TestCase):
10
11
    """Sample integration test class."""
12
13
    def test_network_stuff(self):
14
        assert sample.function_with_network_stuff() is True
15
16
    def test_disk_stuff(self):
17
        assert sample.function_with_disk_stuff() is False
18