|
@@ -117,6 +117,8 @@ def test_indent(text: str, indent_level: int, expected: str, windows_platform: b
|
|
|
("camelTwoHumps", "camel_two_humps"),
|
|
|
("_start_with_underscore", "_start_with_underscore"),
|
|
|
("__start_with_double_underscore", "__start_with_double_underscore"),
|
|
|
+ ("kebab-case", "kebab_case"),
|
|
|
+ ("double-kebab-case", "double_kebab_case"),
|
|
|
],
|
|
|
)
|
|
|
def test_to_snake_case(input: str, output: str):
|