forked from orbit-oss/flask
7 lines
123 B
Python
7 lines
123 B
Python
|
|
import io
|
||
|
|
|
||
|
|
|
||
|
|
def test_changelog_utf8_compatible():
|
||
|
|
with io.open("CHANGES.rst", encoding="UTF-8") as f:
|
||
|
|
f.read()
|