Coverage for constants.py: 100.00%

1 statements  

« prev     ^ index     » next       coverage.py v7.10.6, created at 2026-04-15 12:31 +0000

1"""Application-wide constants.""" 

2 

3PLAYER_POSITIONS = [ 

4 {"full_name": "Goalkeeper", "abbreviation": "GK"}, 

5 {"full_name": "Left Back", "abbreviation": "LB"}, 

6 {"full_name": "Left Center Back", "abbreviation": "LCB"}, 

7 {"full_name": "Right Center Back", "abbreviation": "RCB"}, 

8 {"full_name": "Right Back", "abbreviation": "RB"}, 

9 {"full_name": "Left Central Midfielder", "abbreviation": "LCM"}, 

10 {"full_name": "Central Defensive Midfielder", "abbreviation": "CDM"}, 

11 {"full_name": "Right Central Midfielder", "abbreviation": "RCM"}, 

12 {"full_name": "Left Winger", "abbreviation": "LW"}, 

13 {"full_name": "Striker", "abbreviation": "ST"}, 

14 {"full_name": "Right Winger", "abbreviation": "RW"}, 

15]