Created
June 26, 2026 02:12
-
-
Save mcsee/327d5a89cec640e626323e89f4dea96e to your computer and use it in GitHub Desktop.
Loop Iteration 3 - Test: draw gives 1 point each
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def test_draw_gives_one_point_each(): | |
| ecuador = Team("Ecuador 🇪🇨") | |
| curacao = Team("Curaçao 🇨🇼") | |
| match = Match(ecuador, curacao, home_goals=0, away_goals=0) | |
| standings = GroupStandings() | |
| standings.record(match) | |
| assert standings.points_for(ecuador) == 1 | |
| assert standings.points_for(curacao) == 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment