fn test_construct_twitter_profile_url()

in src/utils/twitter.rs [71:77]


    fn test_construct_twitter_profile_url() {
        let fake_profile = "jsjoeio";
        assert_eq!(
            construct_twitter_profile_url(fake_profile),
            "https://twitter.com/jsjoeio"
        );
    }