(program_name, url_arg, parsed_url)
| 182 | ('https', '://pie.dev/get', 'https://pie.dev/get'), |
| 183 | ]) |
| 184 | def test_url_leading_colon_slash_slash(program_name, url_arg, parsed_url): |
| 185 | env = MockEnvironment(program_name=program_name) |
| 186 | args = parser.parse_args(args=[url_arg], env=env) |
| 187 | assert args.url == parsed_url |
| 188 | |
| 189 | |
| 190 | def test_url_colon_slash_slash_only(): |
nothing calls this directly
no test coverage detected