Ejemplo n.º 1
0
 def test_simple_term(self):
     self.assertEqual(underscore_to_camelcase('lorem'), 'Lorem')
Ejemplo n.º 2
0
 def test_two_simple_terms(self):
     self.assertEqual(underscore_to_camelcase('lorem_ipsum'), 'LoremIpsum')
Ejemplo n.º 3
0
 def test_empty(self):
     self.assertEqual(underscore_to_camelcase(''), '')