| Total Complexity | 4 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| 1 | """Sample integration test module.""" |
||
| 9 | class TestGrortir(unittest.TestCase): |
||
| 10 | |||
| 11 | """Sample integration test class.""" |
||
| 12 | |||
| 13 | @staticmethod |
||
| 14 | def test_network_stuff(): |
||
| 15 | """Example Test method.""" |
||
| 16 | assert sample.function_with_network_stuff() is True |
||
| 17 | |||
| 18 | @staticmethod |
||
| 19 | def test_disk_stuff(): |
||
| 20 | """Another example Test method.""" |
||
| 21 | assert sample.function_with_disk_stuff() is False |
||
| 22 |