(self)
| 8 | |
| 9 | def test_domain_detection(self): |
| 10 | t = Target.from_string("example.com") |
| 11 | assert t.target_type == "domain" |
| 12 | assert t.value == "example.com" |
| 13 | |
| 14 | def test_url_detection(self): |
| 15 | t = Target.from_string("https://example.com/path") |
| 16 | assert t.target_type == "url" |
nothing calls this directly
no test coverage detected