view tests/unit.py @ 2:f3ad4e13beee

pandoc: the way of the future, perhaps
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 15 Apr 2013 21:18:06 -0700
parents 02b140ae3e78
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 disparityUnitTest(unittest.TestCase):

    def test_disparity(self):
        pass

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