示例#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
 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
 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')