def test_algo2str_two_underscores(self): w1 = 'a__c' w2 = 'a--c' self.assertEqual(h.algo2str(w1), w2)
def test_algo2str_one_word(self): w = 'foobarlongword' self.assertEqual(h.algo2str(w), w)
def test_algo2str_only_one_underscore(self): self.assertEqual(h.algo2str('_'), '-')
def test_algo2str_empty(self): self.assertEqual(h.algo2str(''), '')