TestDebacle.test_network_stuff()   A
last analyzed

Complexity

Conditions 2

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 2
c 1
b 0
f 0
dl 0
loc 2
rs 10
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