예제 #1
0
    def test_mlb_boxscore_string_representation(self):
        expected = ('Boxscore for San Francisco Giants at '
                    'Los Angeles Angels (Monday, August 17, 2020)')

        boxscore = Boxscore(BOXSCORE)

        assert boxscore.__repr__() == expected
예제 #2
0
    def test_mlb_boxscore_string_representation(self):
        expected = ('Boxscore for Detroit Tigers at Boston Red Sox (Thursday, '
                    'June 7, 2018)')

        boxscore = Boxscore(BOXSCORE)

        assert boxscore.__repr__() == expected