(self)
| 246 | |
| 247 | class TestTransformName(unittest.TestCase): |
| 248 | def test_upper_camel_case(self): |
| 249 | self.assertEqual(xform_name('UpperCamelCase'), 'upper_camel_case') |
| 250 | self.assertEqual(xform_name('UpperCamelCase', '-'), 'upper-camel-case') |
| 251 | |
| 252 | def test_lower_camel_case(self): |
| 253 | self.assertEqual(xform_name('lowerCamelCase'), 'lower_camel_case') |
nothing calls this directly
no test coverage detected