7 lines
106 B
Python
7 lines
106 B
Python
def test_upper():
|
|
assert "foo".upper() == "FOO"
|
|
|
|
|
|
def test_lower():
|
|
assert "FOO".lower() == "foo"
|