Mercurial > hg > numerics
annotate tests/test_generate.py @ 138:488cb433576c
add d3 from http://d3js.org/d3.v3.min.js
| author | Jeff Hammel <k0scist@gmail.com> | 
|---|---|
| date | Sat, 21 Mar 2015 14:54:38 -0700 | 
| parents | 8448c62a4917 | 
| children | 
| rev | line source | 
|---|---|
| 87 | 1 #!/usr/bin/env python | 
| 2 # -*- coding: utf-8 -*- | |
| 3 | |
| 4 """ | |
| 5 unit tests for generate | |
| 6 """ | |
| 7 | |
| 8 import os | |
| 9 import sys | |
| 10 import tempfile | |
| 11 import unittest | |
| 12 | |
| 13 # globals | |
| 14 here = os.path.dirname(os.path.abspath(__file__)) | |
| 15 | |
| 16 class generateUnitTest(unittest.TestCase): | |
| 17 | |
| 18 def test_generate(self): | |
| 19 tf = tempfile.mktemp() | |
| 20 try: | |
| 21 # pass | |
| 22 pass | |
| 23 finally: | |
| 24 if os.path.exists(tf): | |
| 25 os.remove(tf) | |
| 26 | |
| 27 if __name__ == '__main__': | |
| 28 unittest.main() | |
| 29 | 
