fn test_construct_twitter_url_query()

in src/utils/twitter.rs [53:59]


    fn test_construct_twitter_url_query() {
        let fake_query = "tw hello world";
        assert_eq!(
            construct_twitter_url(fake_query),
            "https://twitter.com/search?q=hello%20world"
        );
    }