예제 #1
0
파일: tests.py 프로젝트: konradhalas/petit
 def test_create_good_function_name_with_first_upper_charachter(self):
     self.assertEqual(Petit.create_good_function_name('BadName'), 'bad_name')
예제 #2
0
파일: tests.py 프로젝트: konradhalas/petit
 def test_create_good_function_name_from_camelcase(self):
     self.assertEqual(Petit.create_good_function_name('reallyBadName'), 'really_bad_name')