view tests/unit.py @ 62:f6b5eb20b1de

add very important dromaeojs letter
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 14 Aug 2012 23:33:25 -0700
parents 3e1f069ac608
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 talosnamesUnitTest(unittest.TestCase):

    def test_talosnames(self):
        pass

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