We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cbfa45 commit 850ab4cCopy full SHA for 850ab4c
tests/test_utils.py
@@ -14,6 +14,9 @@
14
15
def test_is_camel_case():
16
assert is_camel_case("AllGroups")
17
+ assert not is_camel_case("All_Groups")
18
+ assert not is_camel_case("All_Groups_")
19
+ assert not is_camel_case("_AllGroups")
20
assert not is_camel_case("allGroups")
21
assert not is_camel_case("repNames")
22
assert not is_camel_case("10_all")
0 commit comments