Fix use of class level variable references in mutable data in test_competition
Add override of __eq__ to Team and Fixture classes
Rename unit test files to follow the same casing (e.g. test_Competion vstest_fixture)
Rename unit test class names to correctly represent what they are testing (from MyTestCase)
I also created the bug #33 off the back of investigating the unexpected behavior in test_competition for Competition.add_Team(Team) and finding that we are re-using references for class level instances
Competition.add_fixture(Fixture)
method + teststest_competition
__eq__
toTeam
andFixture
classestest_Competion
vstest_fixture
)MyTestCase
)I also created the bug #33 off the back of investigating the unexpected behavior in
test_competition
forCompetition.add_Team(Team)
and finding that we are re-using references for class level instances