mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
6 lines
118 B
Python
6 lines
118 B
Python
from textual.case import camel_to_snake
|
|
|
|
|
|
def test_camel_to_snake():
|
|
assert camel_to_snake("FooBar") == "foo_bar"
|