8 lines
107 B
Python
8 lines
107 B
Python
|
|
def test_upper():
|
|
assert 'foo'.upper() == 'FOO'
|
|
|
|
|
|
def test_lower():
|
|
assert 'FOO'.lower() == 'foo'
|