()
| 564 | |
| 565 | #[test] |
| 566 | fn test_env_state() { |
| 567 | let env_state = build_env_state(); |
| 568 | assert!(env_state.current_working_directory.is_some()); |
| 569 | assert!(env_state.operating_system.as_ref().is_some_and(|os| !os.is_empty())); |
| 570 | println!("{env_state:?}"); |
| 571 | } |
| 572 | |
| 573 | #[test] |
| 574 | fn test_user_input_message_timestamp_formatting() { |
nothing calls this directly
no test coverage detected