def test_punctuation_cleaner_removes_fullstops():
    assert (punctuation_cleaner(TOKENIZED_TWEETS.loc[2, "text"]) ==
            "@MGTOWKnight @FactsVsOpinion cue the NAFALT in 3 2 1")
def test_punctuation_cleaner_removes_exclamation_marks():
    tweet = ("@MGTOWKnight @FactsVsOpinion . . . cue the NAFALT in 3 . . 2 . "
             ". . 1 ! ! !")
    assert (punctuation_cleaner(tweet) ==
            "@MGTOWKnight @FactsVsOpinion cue the NAFALT in 3 2 1")
def test_punctuation_cleaner_removes_colon():
    assert (punctuation_cleaner(TOKENIZED_TWEETS.loc[0, "text"]) ==
            "RT @asredasmyhair Feminists take note #FemFreeFriday "
            "#WomenAgainstFeminism http://t.co/J2HqzVJ8Cx")