pytest2/testing/freeze/tests/test_trivial.py

8 lines
130 B
Python

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