()
| 450 | |
| 451 | #[test] |
| 452 | fn test_parse_image_ref_docker_hub() { |
| 453 | let (reg, repo) = parse_image_ref("dstacktee/guest-image").unwrap(); |
| 454 | assert_eq!(reg, "registry-1.docker.io"); |
| 455 | assert_eq!(repo, "dstacktee/guest-image"); |
| 456 | } |
| 457 | |
| 458 | #[test] |
| 459 | fn test_parse_image_ref_with_scheme() { |
nothing calls this directly
no test coverage detected