Skip to content

Commit

Permalink
TicketDispenser/Python: added basic test file to check that there are…
Browse files Browse the repository at this point in the history
… no syntax errors in the exercise code
  • Loading branch information
Luca Minudel committed Oct 8, 2013
1 parent 4875400 commit ce59fba
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions TDDMicroExercises/python/TurnTicketDispenser/test_turn_ticket.py
@@ -0,0 +1,13 @@
import unittest

from turn_ticket import TicketDispenser

class TicketDispenserTest(unittest.TestCase):

def test_do_something(self):
dispenser = TicketDispenser()
ticket = dispenser.getTurnTicket()


if __name__ == "__main__":
unittest.main()

0 comments on commit ce59fba

Please sign in to comment.