Skip to content

Commit

Permalink
test(test_infra.py): add test code for infra. fix #400 @0.75h
Browse files Browse the repository at this point in the history
  • Loading branch information
hayatedayon committed Jul 21, 2018
1 parent 40fef61 commit 3df1fe6
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
2 changes: 2 additions & 0 deletions infra.py
@@ -1,3 +1,5 @@
# -*- coding: UTF-8 -*-

# Copyright 2018 [name of copyright owner]
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
33 changes: 33 additions & 0 deletions tests/test_infra.py
@@ -0,0 +1,33 @@
# -*- coding: UTF-8 -*-

# Copyright 2018 [name of copyright owner]
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import unittest

import infra


class TestInfra(unittest.TestCase):
def test_search_reading_from_dic(self):
assert infra.search_reading_from_dic(u'リンゴ') == u'リンゴ'
assert infra.search_reading_from_dic(u'りんご') == u'リンゴ'
assert infra.search_reading_from_dic(u'林檎') == u'リンゴ'

def test_search_reading_from_dic_none_words(self):
assert infra.search_reading_from_dic(u'溝口') == u''

0 comments on commit 3df1fe6

Please sign in to comment.