()
| 166 | |
| 167 | #[test] |
| 168 | fn hostname_is_non_empty() { |
| 169 | let h = hostname(); |
| 170 | assert!( |
| 171 | !h.is_empty(), |
| 172 | "hostname() must never return an empty string" |
| 173 | ); |
| 174 | } |
| 175 | |
| 176 | #[test] |
| 177 | fn build_profile_is_debug_or_release() { |
nothing calls this directly
no test coverage detected