()
| 612 | |
| 613 | #[test] |
| 614 | fn no_override_falls_back_to_subdomain() { |
| 615 | // Use the pure resolver with no configured servers — the wrapper loads |
| 616 | // the real global config, which is not hermetic for a unit test. |
| 617 | let name = resolve_identity_from_url( |
| 618 | "https://aaron.atomic.storage/workspaces/w/projects/p/code", |
| 619 | &[], |
| 620 | ); |
| 621 | assert_eq!(name.as_deref(), Some("aaron")); |
| 622 | } |
| 623 | |
| 624 | // -- configured server-host identity binding -- |
| 625 |
nothing calls this directly
no test coverage detected