8 lines
130 B
Python
8 lines
130 B
Python
# -*- coding: utf-8 -*-
|
|
def test_upper():
|
|
assert "foo".upper() == "FOO"
|
|
|
|
|
|
def test_lower():
|
|
assert "FOO".lower() == "foo"
|