Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 15 |
jtkorb |
1 |
#!/p/python/python
|
|
|
2 |
|
|
|
3 |
import os
|
|
|
4 |
import unittest
|
|
|
5 |
import vote
|
|
|
6 |
import random
|
|
|
7 |
|
|
|
8 |
dirTests = "tests"
|
|
|
9 |
|
|
|
10 |
class ModTest(unittest.TestCase):
|
|
|
11 |
def testNormalCase(self):
|
|
|
12 |
self.assertEqual(1, 1)
|
|
|
13 |
|
|
|
14 |
if __name__=="__main__":
|
|
|
15 |
unittest.main()
|