Browse Source

Open file as utf-8 during tests (copyright symbol)

io.open works the same in python2 and in python3
pull/280/head
Stéphane Jourdois 9 years ago
parent
commit
e8f5553ee8
  1. 3
      pygal/test/test_graph.py

3
pygal/test/test_graph.py

@ -24,6 +24,7 @@ import pygal
import uuid import uuid
import sys import sys
import pytest import pytest
import io
from pygal.graph.map import BaseMap from pygal.graph.map import BaseMap
from pygal.util import cut from pygal.util import cut
from pygal._compat import u from pygal._compat import u
@ -53,7 +54,7 @@ def test_render_to_file(Chart, datas):
chart = Chart() chart = Chart()
chart = make_data(chart, datas) chart = make_data(chart, datas)
chart.render_to_file(file_name) chart.render_to_file(file_name)
with open(file_name) as f: with io.open(file_name, encoding="utf-8") as f:
assert 'pygal' in f.read() assert 'pygal' in f.read()
os.remove(file_name) os.remove(file_name)

Loading…
Cancel
Save