예제 #1
0
 def test_remove_verb_markers_empty_string(self):
     """Test remove_verb_markers with empty string."""
     gloss_word = ''
     actual_output = Mp.remove_verb_markers(gloss_word)
     desired_output = ''
     self.assertEqual(actual_output, desired_output)
예제 #2
0
 def test_remove_verb_markers_with_marker(self):
     """Test remove_verb_markers with verb_marker."""
     gloss_word = 'sm2s-t^p_v^do-m^in'
     actual_output = Mp.remove_verb_markers(gloss_word)
     desired_output = 'sm2s-t^p_do-m^in'
     self.assertEqual(actual_output, desired_output)