|
@@ -189,11 +189,11 @@ def test_to_snake_case(input: str, output: str):
|
|
|
("kebab-case", "kebabCase"),
|
|
|
("kebab-case-two", "kebabCaseTwo"),
|
|
|
("snake_kebab-case", "snakeKebabCase"),
|
|
|
- ("_hover", "_hover"),
|
|
|
- ("-starts-with-hyphen", "-startsWithHyphen"),
|
|
|
- ("--starts-with-double-hyphen", "--startsWithDoubleHyphen"),
|
|
|
- ("_starts_with_underscore", "_startsWithUnderscore"),
|
|
|
- ("__starts_with_double_underscore", "__startsWithDoubleUnderscore"),
|
|
|
+ ("_hover", "Hover"),
|
|
|
+ ("-starts-with-hyphen", "StartsWithHyphen"),
|
|
|
+ ("--starts-with-double-hyphen", "StartsWithDoubleHyphen"),
|
|
|
+ ("_starts_with_underscore", "StartsWithUnderscore"),
|
|
|
+ ("__starts_with_double_underscore", "StartsWithDoubleUnderscore"),
|
|
|
(":start-with-colon", ":startWithColon"),
|
|
|
(":-start-with-colon-dash", ":StartWithColonDash"),
|
|
|
],
|