Added another test

svn: r9494
This commit is contained in:
Doug Blank 2007-12-12 16:35:58 +00:00
parent 9871fcf645
commit 270706d35f

View File

@ -59,6 +59,7 @@ def suite1():
keyword, code, standard, upper = line
suite.addTest(TestCase('keyword-%04d', 'keyword', keyword, standard))
suite.addTest(TestCase('translation-%04d', 'translation', standard, keyword))
suite.addTest(TestCase('translation-%04d', 'translation', standard.lower(), keyword))
suite.addTest(TestCase('translation-%04d', 'translation', upper, keyword.upper()))
return suite