Skip to content

Commit 5a2b506

Browse files
committed
py_app
1 parent 2818a03 commit 5a2b506

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

py_app/test_uppercase.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ def test_to_uppercase():
55
assert to_uppercase("hello") == "HELLO"
66
assert to_uppercase("world") == "WORLD"
77
assert to_uppercase("Python") == "PYTHON"
8+
assert to_uppercase("123abc") == "123ABC"
9+
assert to_uppercase("!@#") == "!@#"
810
assert to_uppercase("") == ""
911

1012
if __name__ == "__main__":

0 commit comments

Comments
 (0)