[KoCo-CVS] [Commit] KoreanCodecs/test test_hangul.py
Brought to you by:
perky
From: Chang <pe...@us...> - 2002-04-27 03:37:24
|
perky 02/04/26 20:37:16 Modified: test test_hangul.py Log: - make it simple(tm) Revision Changes Path 1.8 +2 -7 KoreanCodecs/test/test_hangul.py Index: test_hangul.py =================================================================== RCS file: /cvsroot/koco/KoreanCodecs/test/test_hangul.py,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- test_hangul.py 25 Apr 2002 21:13:44 -0000 1.7 +++ test_hangul.py 27 Apr 2002 03:37:16 -0000 1.8 @@ -1,8 +1,6 @@ # Hye-Shik Chang <1 March 2002> import unittest -from korean.c import hangul as c -from korean.python import hangul as python class Shield: class TestHangul(unittest.TestCase): @@ -70,13 +68,10 @@ u' \u110f\u1175\u110f\u1175') class TestHangul_CExtension(Shield.TestHangul): - def setUp(self): - self.h = c + from korean.c import hangul as h class TestHangul_PurePython(Shield.TestHangul): - def setUp(self): - self.h = python - + from korean.python import hangul as h if __name__ == '__main__': import sys |