Mercurial > hg > GlobalNeighbors
annotate tests/test_globalneighbors.py @ 0:5dba84370182
initial commit; half-working prototype
| author | Jeff Hammel <k0scist@gmail.com> | 
|---|---|
| date | Sat, 24 Jun 2017 12:03:39 -0700 | 
| parents | |
| children | 
| rev | line source | 
|---|---|
| 
0
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
1 #!/usr/bin/env python | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
2 # -*- coding: utf-8 -*- | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
3 | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
4 """ | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
5 unit tests for globalneighbors | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
6 """ | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
7 | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
8 import os | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
9 import sys | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
10 import tempfile | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
11 import unittest | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
12 | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
13 # globals | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
14 here = os.path.dirname(os.path.abspath(__file__)) | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
15 | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
16 class globalneighborsUnitTest(unittest.TestCase): | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
17 | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
18 def test_globalneighbors(self): | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
19 tf = tempfile.mktemp() | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
20 try: | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
21 # pass | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
22 pass | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
23 finally: | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
24 if os.path.exists(tf): | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
25 os.remove(tf) | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
26 | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
27 if __name__ == '__main__': | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
28 unittest.main() | 
| 
 
5dba84370182
initial commit; half-working prototype
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
29 | 
