Browse Source

Prevent persistent temp file creation

pull/130/head
Florian Mounier 11 years ago
parent
commit
31e451ae88
  1. 7
      pygal/test/test_config.py

7
pygal/test/test_config.py

@ -24,6 +24,7 @@ from pygal import (
from pygal._compat import u from pygal._compat import u
from pygal.test.utils import texts from pygal.test.utils import texts
from pygal.test import pytest_generate_tests, make_data from pygal.test import pytest_generate_tests, make_data
from tempfile import NamedTemporaryFile
from uuid import uuid4 from uuid import uuid4
@ -296,12 +297,12 @@ def test_include_x_axis(Chart):
def test_css(Chart): def test_css(Chart):
css = "{{ id }}text { fill: #bedead; }\n" css = "{{ id }}text { fill: #bedead; }\n"
css_file = '/tmp/pygal_custom_style-%s.css' % uuid4() with NamedTemporaryFile('w') as f:
with open(css_file, 'w') as f:
f.write(css) f.write(css)
f.flush()
config = Config() config = Config()
config.css.append(css_file) config.css.append(f.name)
chart = Chart(config) chart = Chart(config)
chart.add('/', [10, 1, 5]) chart.add('/', [10, 1, 5])

Loading…
Cancel
Save