comparison tests/test_push_autoprops.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 772280aed751
children 2d7398fffd0d
comparison
equal deleted inserted replaced
1043:69a9fb45cad5 1044:d741f536f23a
98 "svn:eol-style=native;svn:executable=true\n") 98 "svn:eol-style=native;svn:executable=true\n")
99 self.assertEqual({ 99 self.assertEqual({
100 'svn:eol-style': 'native', 100 'svn:eol-style': 'native',
101 'svn:executable': 'true'}, 101 'svn:executable': 'true'},
102 props) 102 props)
103
104
105 def suite():
106 return unittest.findTestCases(sys.modules[__name__])
107