Added ImageExporter test for py2-pyside fix

This commit is contained in:
Kenneth Lyons 2020-04-02 22:55:33 -07:00
parent 6985be2a6f
commit 3ba76475d4
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
# -*- coding: utf-8 -*-
import pyqtgraph as pg
from pyqtgraph.exporters import ImageExporter
app = pg.mkQApp()
def test_ImageExporter_filename_dialog():
"""Tests ImageExporter code path that opens a file dialog. Regression test
for pull request 1133."""
p = pg.plot()
exp = ImageExporter(p.getPlotItem())
exp.export()