Mercurial > hg > hls
view tests/test_hls.py @ 2:ed7e9734a088
moar stubbin
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 20 Jul 2015 13:23:58 -0700 |
parents | a9af2eba16b7 |
children |
line wrap: on
line source
#!/usr/bin/env python # -*- coding: utf-8 -*- """ unit tests for hls """ import os import sys import tempfile import unittest # globals here = os.path.dirname(os.path.abspath(__file__)) class hlsUnitTest(unittest.TestCase): def test_hls(self): tf = tempfile.mktemp() try: # pass pass finally: if os.path.exists(tf): os.remove(tf) if __name__ == '__main__': unittest.main()