()
| 284 | |
| 285 | |
| 286 | def test_season_pattern1b(): |
| 287 | my_season = check_post = "1998" |
| 288 | assert SeasonCode.MULTI_YEAR.parse(my_season) == "9899" |
| 289 | assert SeasonCode.SINGLE_YEAR.parse(my_season) == "1998" |
| 290 | assert my_season == check_post |
| 291 | |
| 292 | |
| 293 | def test_season_pattern1c(): |