| Total Complexity | 2 |
| Total Lines | 9 |
| Duplicated Lines | 0 % |
| 1 | """Sample integration test module.""" |
||
| 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 |