cx_freeze doesn't seem to be very well supported in Python 3.5. Using pyinstaller instead and rename environment to "freeze" which is a more generic term for freezing python code into standalone executables. Fix #1769
6 lines
105 B
Python
6 lines
105 B
Python
|
|
def test_upper():
|
|
assert 'foo'.upper() == 'FOO'
|
|
|
|
def test_lower():
|
|
assert 'FOO'.lower() == 'foo' |