[KoCo-CVS] [Commit] KoreanCodecs/test test_hangul.py
Brought to you by:
perky
From: Chang <pe...@us...> - 2002-04-25 05:01:09
|
perky 02/04/24 22:01:06 Modified: test test_hangul.py Log: - Remove hangul.dividestring method (it was just fancy feature..) - Add c.hangul to distutil build chain. Yeah~ Revision Changes Path 1.6 +0 -12 KoreanCodecs/test/test_hangul.py Index: test_hangul.py =================================================================== RCS file: /cvsroot/koco/KoreanCodecs/test/test_hangul.py,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- test_hangul.py 25 Apr 2002 03:46:35 -0000 1.5 +++ test_hangul.py 25 Apr 2002 05:01:06 -0000 1.6 @@ -14,18 +14,6 @@ self.assertEqual(split(u'\u3149'), (Jaeum.JJ, Null, Null)) self.assertEqual(split(u'\u3162'), (Null, Moeum.YI, Null)) - def test_dividestring(self): - self.assertEqual( - dividestring(u'\ub5ab\uc870\uc544\ub77c\uaf65'), - u'\u3138\u3153\u313c\u3148\u3157\u3147\u314f\u3139\u314f\u3132\u3159\u3131' - ) - self.assertEqual( - dividestring(u'\ubfb0\ub85c\ub871 \uaf2c\ub9c8\ub9c8\ub140 \uc5f4\ub450\uc0b4 \ub09c', 1), - u'\u3142\u3142\u315b\u3139\u3157\u3139\u3157\u3147 ' - u'\u3131\u3131\u3157\u3141\u314f\u3141\u314f\u3134\u3155 ' - u'\u3147\u3155\u3139\u3137\u315c\u3145\u314f\u3139 \u3134\u314f\u3134' - ) - def test_basicspec(self): self.assertEqual(isJaeum(Jaeum.J), 1) self.assertEqual(isJaeum(Moeum.E), 0) |