comparison tests/test_push_autoprops.py @ 1070:6aad12ea6d9f

test_push_autoprops: use stupid mode metaclass
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Fri, 09 Aug 2013 23:45:58 +0200
parents 2d7398fffd0d
children
comparison
equal deleted inserted replaced
1069:f6c9394032cb 1070:6aad12ea6d9f
20 "enable-auto-props = yes\n" 20 "enable-auto-props = yes\n"
21 "[auto-props]\n" 21 "[auto-props]\n"
22 "*.py = test:prop=success\n") 22 "*.py = test:prop=success\n")
23 changes = [('test.py', 'test.py', 'echo hallo')] 23 changes = [('test.py', 'test.py', 'echo hallo')]
24 self.commitchanges(changes) 24 self.commitchanges(changes)
25 self.pushrevisions(True) 25 self.pushrevisions()
26 prop_val = test_util.svnpropget( 26 prop_val = test_util.svnpropget(
27 self.repo_path, "trunk/test.py", 'test:prop') 27 self.repo_path, "trunk/test.py", 'test:prop')
28 self.assertEqual('success', prop_val) 28 self.assertEqual('success', prop_val)
29 29
30 30