7068: skip blocked test code, blocks other tests

svn: r23139
This commit is contained in:
Vassilii Khachaturov 2013-09-15 14:56:12 +00:00
parent f4be9dfc70
commit f31a74d271

View File

@ -193,7 +193,13 @@ for calendar in (Date.CAL_JULIAN,
d.set(quality,modifier,calendar,(4,month,1789,False),"Text comment")
dates.append( d)
for calendar in (Date.CAL_HEBREW, Date.CAL_FRENCH):
@unittest.skip('Blocked by bug# 7068')
# please restore the commented "for" line below upon fixing the bug!!
# then remove this class and the skip above it...
class TestFrenchCalBeforeFrenchRevolution(unittest.TestCase):
pass
#for calendar in (Date.CAL_HEBREW, Date.CAL_FRENCH):
for calendar in [Date.CAL_HEBREW]:
for month in range(1,14):
d = Date()
d.set(quality,modifier,calendar,(4,month,1789,False),"Text comment")