aboutsummaryrefslogblamecommitdiffstats
path: root/test_XDiff.py
blob: 8eb8072731cf1aa24abf115d17b49e529ba5a84f (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                     
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import unittest
import XDiff

class TestXDiff(unittest.TestCase):
    def test_XDiff(self):
        XDiff.XDiff('old.xml', 'new.xml', 'diff.xml')
        self.assertTrue(True, "we have managed to get through XDiff.")