# HG changeset patch
# User Rémi Cardona <remi.cardona@logilab.fr>
# Date 1435253328 -7200
# Thu Jun 25 19:28:48 2015 +0200
# Node ID b7947586b1ba314db0533fe136a7c384f95e445d
# Parent 9fc7d12fdd299097d470f4c1c60ef1005be85ecf
[test] run TagsTC.test_tagged_class on python 3
Closes #105845.
# User Rémi Cardona <remi.cardona@logilab.fr>
# Date 1435253328 -7200
# Thu Jun 25 19:28:48 2015 +0200
# Node ID b7947586b1ba314db0533fe136a7c384f95e445d
# Parent 9fc7d12fdd299097d470f4c1c60ef1005be85ecf
[test] run TagsTC.test_tagged_class on python 3
Closes #105845.
@@ -766,13 +766,10 @@
1 2 self.assertTrue(tags.match('not other or (testing and bibi)')) 3 self.assertTrue(tags.match('other or (testing and bob)')) 4 5 def test_tagged_class(self): 6 - if sys.version_info > (3, 0): 7 - self.skipTest('fix me for py3k') 8 - 9 def options(tags): 10 class Options(object): 11 tags_pattern = tags 12 return Options() 13