- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest.py
More file actions
Latest commit
33 lines (23 loc) · 478 Bytes
/
Copy pathTest.py
File metadata and controls
33 lines (23 loc) · 478 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python
# encoding: utf-8
"""
Test.py
Created by Marko on 2010-05-28.
Copyright (c) 2010 Bstards. All rights reserved.
"""
importsys
importos
importunittest
fromunittestimportTestCase
classTest:
def__init__(self):
pass
classTestTests(unittest.TestCase):
defsetUp(self):
pass
deftestInstance(self):
"""docstring for testInstance():"""
self.assertEqual(1,1,msg='No Son Iguales')
# pass
if__name__=='__main__':
unittest.main()