Exemplo n.º 1
0
    def test_returns_false_when_tweet_does_not_contain_date(self):

        assert bot.contains_date("Hello there!") is False
Exemplo n.º 2
0
    def test_returns_true_when_tweet_contains_date(self, date_string):

        assert bot.contains_date(
            f"Remind me of $AMZN in {date_string}") is True