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 2818a03 commit 5a2b506Copy full SHA for 5a2b506
py_app/test_uppercase.py
@@ -5,6 +5,8 @@ def test_to_uppercase():
5
assert to_uppercase("hello") == "HELLO"
6
assert to_uppercase("world") == "WORLD"
7
assert to_uppercase("Python") == "PYTHON"
8
+ assert to_uppercase("123abc") == "123ABC"
9
+ assert to_uppercase("!@#") == "!@#"
10
assert to_uppercase("") == ""
11
12
if __name__ == "__main__":
0 commit comments