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