()
| 798 | |
| 799 | #[test] |
| 800 | fn no_override_falls_back_to_subdomain() { |
| 801 | // Use the pure resolver with no configured servers — the wrapper loads |
| 802 | // the real global config, which is not hermetic for a unit test. |
| 803 | let name = resolve_identity_from_url( |
| 804 | "https://aaron.atomic.storage/workspaces/w/projects/p/code", |
| 805 | &[], |
| 806 | ); |
| 807 | assert_eq!(name.as_deref(), Some("aaron")); |
| 808 | } |
| 809 | |
| 810 | // -- configured server-host identity binding -- |
| 811 |
nothing calls this directly
no test coverage detected