in src/utils/mod.rs [27:32]
fn test_get_command_from_query_string_no_whitespace() {
// Test with command only
let actual = get_command_from_query_string("tw");
let expected = "tw";
assert_eq!(actual, expected);
}