Completed
Pull Request — master (#1)
by Wojtek
01:25
created

tests.TestGrortir.test_network_stuff()   A

Complexity

Conditions 2

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 2
rs 10
cc 2
1
"""Sample integration test module."""
2
# pylint: disable=no-self-use,missing-docstring
3
4
import unittest
5
6
from grortir import sample
7
8
9
class TestGrortir(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