コード例 #1
0
ファイル: test_utils.py プロジェクト: sathish86/odin
 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
ファイル: test_utils.py プロジェクト: sathish86/odin
 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
ファイル: test_utils.py プロジェクト: thedrow/odin
 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
ファイル: test_utils.py プロジェクト: ktp-forked-repos/odin
 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')