Esempio n. 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'))
Esempio n. 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'))
Esempio n. 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')
Esempio n. 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')