Пример #1
0
 def test_secondhalf_is_played(self):
     firstGameEntry = DBSetup().create_teamlog_home_and_away()
     firstGameEntry.gameHalftime = '09:57'
     firstGameEntry.save()
     gamelog = GameLog(firstGameEntry)
     assert not gamelog.is_firsthalf()
Пример #2
0
 def test_firsthalf_is_played(self):
     firstGameEntry = DBSetup().create_teamlog_home_and_away()
     gamelog = GameLog(firstGameEntry)
     assert gamelog.is_firsthalf()