Reviewer: Lauro Mora <lauro.neto@openbossa.org>
Marcelo Lira <marcelo.lira@openbossa.org>
15 lines
261 B
Python
15 lines
261 B
Python
#!/usr/bin/python
|
|
|
|
import unittest
|
|
|
|
from PySide.QtCore import *
|
|
from PySide.QtGui import *
|
|
from helper import UsesQApplication
|
|
|
|
class NeverDiesTest(UsesQApplication):
|
|
|
|
def testIt(self):
|
|
QPrintDialog()
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|