(self)
| 118 | |
| 119 | class TestParseTargets: |
| 120 | def test_comma_separated_inline(self): |
| 121 | from openosint.multi_target import parse_targets |
| 122 | |
| 123 | result = parse_targets("a@x.com,b@y.com,c@z.com") |
| 124 | assert result == ["a@x.com", "b@y.com", "c@z.com"] |
| 125 | |
| 126 | def test_strips_whitespace(self): |
| 127 | from openosint.multi_target import parse_targets |
nothing calls this directly
no test coverage detected