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