view tests/test_lemuriformes.py @ 0:7a4a073ee13e

initial commit
author Jeff Hammel <k0scist@gmail.com>
date Mon, 22 May 2017 18:50:11 -0700
parents
children
line wrap: on
line source

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

"""
unit tests for lemuriformes
"""

import os
import sys
import tempfile
import unittest

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

class lemuriformesUnitTest(unittest.TestCase):

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

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