From 95e359b4e720f67306b3f632c9c1dc67d46196a7 Mon Sep 17 00:00:00 2001 From: Shohei Ueda <30958501+peaceiris@users.noreply.github.com> Date: Mon, 27 Jul 2020 20:54:46 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20replace=20=E3=82=94=20with=20=E3=81=86?= =?UTF-8?q?=E3=82=9B=20(#24)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 3 ++- main_test.py | 4 ++++ tsv/emoji.tsv | 18 +++++++++--------- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/main.py b/main.py index 8c0f25a..7601668 100644 --- a/main.py +++ b/main.py @@ -21,7 +21,8 @@ def hiraganafy(keyword): def add_word_to_dict(emoji, keyword, emoji_dict): - word = f':{keyword}\t{emoji}\t記号\t' + valid_keyword = keyword.replace('ゔ', 'う゛') + word = f':{valid_keyword}\t{emoji}\t記号\t' emoji_dict.append(word) diff --git a/main_test.py b/main_test.py index 1231c2c..4c4a9f6 100644 --- a/main_test.py +++ b/main_test.py @@ -1,6 +1,7 @@ import unittest import main + class TestStringMethods(unittest.TestCase): def test_hiraganafy(self): @@ -16,6 +17,9 @@ def test_add_word_to_dict(self): main.add_word_to_dict('🇯🇵', 'にっぽん', emoji_dict) expected_row = f':にっぽん\t🇯🇵\t記号\t' self.assertEqual(expected_row, emoji_dict[0]) + main.add_word_to_dict('🆚', 'ゔぁーさす', emoji_dict) + valid_row = f':う゛ぁーさす\t🆚\t記号\t' + self.assertEqual(valid_row, emoji_dict[1]) if __name__ == '__main__': diff --git a/tsv/emoji.tsv b/tsv/emoji.tsv index eeb8345..3472e03 100644 --- a/tsv/emoji.tsv +++ b/tsv/emoji.tsv @@ -310,8 +310,8 @@ :あめりか 🗽 記号 :あめりかがっしゅうこく 🇺🇸 記号 :あめりかたいりく 🌎 記号 +:あめりかりょうう゛ぁーじんしょしま 🇻🇮 記号 :あめりかりょうさもあ 🇦🇸 記号 -:あめりかりょうゔぁーじんしょしま 🇻🇮 記号 :あめりかんふっとぼーる 🏈 記号 :あめーば 🦠 記号 :あらいぐま 🦝 記号 @@ -394,7 +394,7 @@ :いかりのふきだし 🗯 記号 :いぎりす 🇬🇧 記号 :いぎりすりょういんどひろしちいき 🇮🇴 記号 -:いぎりすりょうゔぁーじんしょしま 🇻🇬 記号 +:いぎりすりょうう゛ぁーじんしょしま 🇻🇬 記号 :いざかや 🍺 記号 :いざかや 🏮 記号 :いし 👨‍⚕ 記号 @@ -611,6 +611,12 @@ :うんち 💩 記号 :うんち 💩 記号 :うんめい 🔮 記号 +:う゛ぁーさす 🆚 記号 +:う゛ぃえす 🆚 記号 +:う゛ぃおら 🎻 記号 +:う゛ぃらん 🦹 記号 +:う゛ぃらん 🦹‍♀ 記号 +:う゛ぃらん 🦹‍♂ 記号 :うーん 🤔 記号 :え 🉐 記号 :え 🎨 記号 @@ -3559,6 +3565,7 @@ :すうじ 🔢 記号 :すうじのにゅうりょく 🔢 記号 :すうじのにゅうりょく 🔢 記号 +:すう゛ぁーるばるしょしまおよびやんまいえんしま 🇸🇯 記号 :すかいだいびんぐ 🪂 記号 :すかる ☠ 記号 :すかる 💀 記号 @@ -3802,7 +3809,6 @@ :すわる 🧎 記号 :すわる 🧎‍♀ 記号 :すわる 🧎‍♂ 記号 -:すゔぁーるばるしょしまおよびやんまいえんしま 🇸🇯 記号 :すーだん 🇸🇩 記号 :すーつ 🕴 記号 :すーつけーす 🛄 記号 @@ -8253,9 +8259,3 @@ :わーい 😃 記号 :わーい 😄 記号 :わーい 😝 記号 -:ゔぁーさす 🆚 記号 -:ゔぃえす 🆚 記号 -:ゔぃおら 🎻 記号 -:ゔぃらん 🦹 記号 -:ゔぃらん 🦹‍♀ 記号 -:ゔぃらん 🦹‍♂ 記号