Esempio n. 1
0
 def test_split_by_dots_2(self):
     result = utils.split_by_dots(self.text_2)
     expectation = ['あ', 'い', 'う', 'え', 'お', 'かき', 'く', 'けこ']
     self.assertEqual(result, expectation)
Esempio n. 2
0
 def test_split_by_dots_2(self):
     result = utils.split_by_dots(self.text_2)
     expectation = ['あ', 'い', 'う', 'え', 'お', 'かき', 'く', 'けこ']
     self.assertEqual(result, expectation)
Esempio n. 3
0
 def test_split_by_dots(self):
     result = utils.split_by_dots(self.text_1)
     expectation = ['あいう', 'えお', 'かきく', 'けこ']
     self.assertEqual(result, expectation)
Esempio n. 4
0
 def test_split_by_dots(self):
     result = utils.split_by_dots(self.text_1)
     expectation = ['あいう', 'えお', 'かきく', 'けこ']
     self.assertEqual(result, expectation)