Mercurial > hg > lockedfile
diff tests/unit.py @ 0:c8c2d98afc98
initial commit (stub)
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sun, 18 Mar 2012 20:37:19 -0700 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/unit.py Sun Mar 18 20:37:19 2012 -0700 @@ -0,0 +1,21 @@ +#!/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() +