Beispiel #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'))
Beispiel #2
0
 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')
Beispiel #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'))
Beispiel #4
0
 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')