()
| 457 | |
| 458 | #[test] |
| 459 | fn test_parse_image_ref_with_scheme() { |
| 460 | let (reg, repo) = parse_image_ref("https://ghcr.io/dstack-tee/guest-image").unwrap(); |
| 461 | assert_eq!(reg, "ghcr.io"); |
| 462 | assert_eq!(repo, "dstack-tee/guest-image"); |
| 463 | } |
| 464 | |
| 465 | #[test] |
| 466 | fn test_parse_www_authenticate() { |
nothing calls this directly
no test coverage detected