~yacinechaouche/+junk/BZR

« back to all changes in this revision

Viewing changes to CODE/REDDIT/TTT/mytictactoe/tests/test_game.py

  • Committer: yacinechaouche at yahoo
  • Date: 2015-01-14 22:23:03 UTC
  • Revision ID: yacinechaouche@yahoo.com-20150114222303-6gbtqqxii717vyka
Ajout de CODE et PROD. Il faudra ensuite ajouter ce qu'il y avait dan TMP

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import sys
 
2
sys.path.append("..")
 
3
from board import Board
 
4
from game import Game
 
5
import unittest
 
6
 
 
7
class TestGame(unittest.TestCase):
 
8
    def test_winning1(self):
 
9
        """
 
10
        """
 
11
        
 
12
 
 
13
if __name__ == '__main__':
 
14
    unittest.main(exit=False)
 
15