示例#1
0
 def test_lower_dash_to_camel(self):
     self.assertEqual("thisIsAnExample",
                      utils.lower_dash_to_camel('this-is-an-example'))
     self.assertEqual("thisIsAnExample",
                      utils.lower_dash_to_camel('this-is-an-example'))
     self.assertEqual("thisIsATest",
                      utils.lower_dash_to_camel('this-Is-A-test'))
示例#2
0
 def test_lower_dash_to_camel(self):
     self.assertEqual("thisIsAnExample", utils.lower_dash_to_camel('this-is-an-example'))
     self.assertEqual("thisIsAnExample", utils.lower_dash_to_camel('this-is-an-example'))
     self.assertEqual("thisIsATest", utils.lower_dash_to_camel('this-Is-A-test'))
示例#3
0
 def test_lower_dash_to_camel(self):
     assert "thisIsAnExample" == utils.lower_dash_to_camel('this-is-an-example')
     assert "thisIsAnExample" == utils.lower_dash_to_camel('this-is-an-example')
     assert "thisIsATest" == utils.lower_dash_to_camel('this-Is-A-test')
示例#4
0
 def test_lower_dash_to_camel(self):
     assert "thisIsAnExample" == utils.lower_dash_to_camel('this-is-an-example')
     assert "thisIsAnExample" == utils.lower_dash_to_camel('this-is-an-example')
     assert "thisIsATest" == utils.lower_dash_to_camel('this-Is-A-test')