Exemplo n.º 1
0
 def test_cutoff_msg20_with_none(self):
     msg = None
     eq_(cutoff_msg20(msg), '')
Exemplo n.º 2
0
 def test_cutoff_msg20_with_blank_msg(self):
     msg = ''
     eq_(cutoff_msg20(msg), '')
Exemplo n.º 3
0
 def test_cutoff_msg20_with_english_msg(self):
     msg = 'anohana'
     eq_(cutoff_msg20(msg), msg)
Exemplo n.º 4
0
 def test_cutoff_msg20_with_long_msg(self):
     msg = 'あの花の名前を僕はまだ知らないを見たんだけど、君どう思う?'
     eq_(cutoff_msg20(msg), '20文字以内の単語でしらべてほしいにゃー')
Exemplo n.º 5
0
 def test_cutoff_msg20_with_japanese_msg(self):
     msg = 'あの花'
     eq_(cutoff_msg20(msg), msg)