(self)
| 314 | assert address_in_network("192.168.1.1", "192.168.1.0/24") |
| 315 | |
| 316 | def test_invalid(self): |
| 317 | assert not address_in_network("172.16.0.1", "192.168.1.0/24") |
| 318 | |
| 319 | |
| 320 | class TestGuessFilename: |
nothing calls this directly
no test coverage detected