diff tests/test_fetch_command_regexes.py @ 1044:d741f536f23a

tests: remove old test-loading infrastructure (for those in the know, this is known as a suitectomy)
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Wed, 07 Aug 2013 16:00:52 +0200
parents 1d07e86f5797
children
line wrap: on
line diff
--- a/tests/test_fetch_command_regexes.py
+++ b/tests/test_fetch_command_regexes.py
@@ -1,5 +1,7 @@
 import unittest
 
+import test_util
+
 from hgsubversion import stupid
 
 
@@ -141,6 +143,3 @@ Added: svn:executable
         changed = stupid.parsediff(data)
         self.assertEqual(['empty1', 'empty2', 'binary1', 'text1', 'binary2', 'text2'],
                          [f.name for f in changed])
-
-def suite():
-    return unittest.TestLoader().loadTestsFromTestCase(RegexTests)