view tests/unit.py @ 17:734d26329c82

from http://k0s.org/hg/config/file/c328382f68ff/python/actions.py
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 29 Jul 2013 22:14:44 -0700
parents 67cfeffa0d90
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 intentmademanifestUnitTest(unittest.TestCase):

    def test_intentmademanifest(self):
        pass

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