view tests/test_periprocess.py @ 1:a1b13d024582 default tip

remove non-existent entrypoints
author Jeff Hammel <k0scist@gmail.com>
date Wed, 30 Nov 2016 12:44:47 -0800
parents d28351df9a8a
children
line wrap: on
line source

#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
unit tests for periprocess
"""

import os
import sys
import tempfile
import unittest

# globals
here = os.path.dirname(os.path.abspath(__file__))

class periprocessUnitTest(unittest.TestCase):

    def test_periprocess(self):
        tf = tempfile.mktemp()
        try:
            # pass
            pass
        finally:
            if os.path.exists(tf):
                os.remove(tf)

if __name__ == '__main__':
    unittest.main()