(self)
| 23 | |
| 24 | def test_email_detection(self): |
| 25 | t = Target.from_string("user@example.com") |
| 26 | assert t.target_type == "email" |
| 27 | assert t.value == "user@example.com" |
| 28 | |
| 29 | |
| 30 | class TestScanResult: |
| 31 | """Tests for ScanResult model.""" |
nothing calls this directly
no test coverage detected