Mercurial > hg > GlobalNeighbors
view tests/test_console_scripts.py @ 25:991bce6b6881 default tip
[knn] placeholder for planning session
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 17 Sep 2017 14:35:50 -0700 |
parents | 5dba84370182 |
children |
line wrap: on
line source
#!/usr/bin/env python """ test console scripts """ import os import subprocess import unittest from globalneighbors import main here = os.path.dirname(os.path.abspath(__file__)) data = os.path.join(here, 'data') class TestConsoleScripts(unittest.TestCase): # path to full data full_tsv = os.path.join(data, 'cities1000.txt') def test_main(self): """test main API""" assert os.path.exists(self.full_tsv) main.main(args=[self.full_tsv]) def test_subprocess(self): """ test invoking `global-neighbors` as a subprocess """ # TODO if __name__ == '__main__': unittest.main()