view tests/unit.py @ 11:546695da018c

commitwatcher/agent.py tests/unit.py
author Jeff Hammel <jhammel@mozilla.com>
date Sat, 28 Sep 2013 05:15:59 -0700
parents bdc039cb1f2e
children a0ff003319ec
line wrap: on
line source

#!/usr/bin/env python

"""
unit tests
"""

import os
import sys
import unittest

from commitwatcher import FeedAgentDiff

# globals
here = os.path.dirname(os.path.abspath(__file__))

class CommitWatcherUnitTest(unittest.TestCase):

    def test_patch(self):
        """test parsing the files from a patch"""

        files = 

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