예제 #1
0
 def test_lower_underscore_to_camel(self):
     self.assertEqual("thisIsAnExample",
                      utils.lower_underscore_to_camel('this_is_an_example'))
     self.assertEqual("thisIsAnExample",
                      utils.lower_underscore_to_camel('this_is_an_example'))
     self.assertEqual("thisIsATest",
                      utils.lower_underscore_to_camel('this_Is_A_test'))
예제 #2
0
파일: test_utils.py 프로젝트: thedrow/odin
 def test_lower_underscore_to_camel(self):
     assert "thisIsAnExample" == utils.lower_underscore_to_camel(
         'this_is_an_example')
     assert "thisIsAnExample" == utils.lower_underscore_to_camel(
         'this_is_an_example')
     assert "thisIsATest" == utils.lower_underscore_to_camel(
         'this_Is_A_test')
예제 #3
0
 def test_lower_underscore_to_camel(self):
     self.assertEqual("thisIsAnExample", utils.lower_underscore_to_camel('this_is_an_example'))
     self.assertEqual("thisIsAnExample", utils.lower_underscore_to_camel('this_is_an_example'))
     self.assertEqual("thisIsATest", utils.lower_underscore_to_camel('this_Is_A_test'))
예제 #4
0
파일: test_utils.py 프로젝트: thedrow/odin
 def test_lower_underscore_to_camel(self):
     assert "thisIsAnExample" == utils.lower_underscore_to_camel('this_is_an_example')
     assert "thisIsAnExample" == utils.lower_underscore_to_camel('this_is_an_example')
     assert "thisIsATest" == utils.lower_underscore_to_camel('this_Is_A_test')