Mercurial > hg > lockedfile
view tests/unit.py @ 1:1981f44ca250 default tip
remove unneeded files
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sun, 18 Mar 2012 20:39:23 -0700 |
parents | c8c2d98afc98 |
children |
line wrap: on
line source
#!/usr/bin/env python """ unit tests """ import os import sys import unittest # globals here = os.path.dirname(os.path.abspath(__file__)) class lockedfileUnitTest(unittest.TestCase): def test_lockedfile(self): pass if __name__ == '__main__': unittest.main()