diff options
Diffstat (limited to 'tests/test_gsxws.py')
-rw-r--r-- | tests/test_gsxws.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test_gsxws.py b/tests/test_gsxws.py index 432ed64..bee83b0 100644 --- a/tests/test_gsxws.py +++ b/tests/test_gsxws.py @@ -20,6 +20,12 @@ class RemoteTestCase(TestCase): env['GSX_ENV']) +class TestCoreFunctions(TestCase): + def test_dump(self): + r = repairs.Repair(blaa='test') + self.assertRegexpMatches(str(r), '<root><blaa>test</blaa></root>') + + class TestErrorFunctions(TestCase): def setUp(self): xml = open('tests/fixtures/multierror.xml', 'r').read() |