mirror of
https://github.com/rspeer/wordfreq.git
synced 2024-12-23 17:31:41 +00:00
e7d46fb104
Former-commit-id: 09597b7cf3
24 lines
674 B
Python
24 lines
674 B
Python
from nose.tools import eq_, assert_almost_equal
|
|
from wordfreq import tokenize, word_frequency
|
|
|
|
|
|
def test_tokens():
|
|
eq_(tokenize('おはようございます', 'ja'),
|
|
['おはよう', 'ござい', 'ます'])
|
|
|
|
|
|
def test_combination():
|
|
ohayou_freq = word_frequency('おはよう', 'ja')
|
|
gozai_freq = word_frequency('ござい', 'ja')
|
|
masu_freq = word_frequency('ます', 'ja')
|
|
|
|
assert_almost_equal(
|
|
word_frequency('おはようおはよう', 'ja'),
|
|
ohayou_freq / 2
|
|
)
|
|
assert_almost_equal(
|
|
1.0 / word_frequency('おはようございます', 'ja'),
|
|
1.0 / ohayou_freq + 1.0 / gozai_freq + 1.0 / masu_freq
|
|
)
|
|
|