in src/utils/twitter.rs [80:86]
fn test_construct_twitter_search_url() {
let fake_query = "hello world";
assert_eq!(
construct_twitter_search_url(fake_query),
"https://twitter.com/search?q=hello%20world"
);
}