PySide/tests/signals/signal_func_test.py
Renato Filho ab918abc1e Created new unittest model.
Separete unittest for module.
Only run unittest for compiled modules.

Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>,
          Luciano Wolf <luciano.wolf@openbossa.org>
2010-06-07 16:57:11 -03:00

21 lines
462 B
Python
Executable file

# -*- coding: utf-8 -*-
import unittest
from PySide.QtCore import SIGNAL, SLOT
class SIGNALSLOTTests(unittest.TestCase):
'''Test the output of SIGNAL and SLOT.'''
def testSIGNAL(self):
#SIGNAL function
a = "foobar"
self.assertEqual(str(SIGNAL(a)), "2foobar")
def testSLOT(self):
#SLOT function
a = "foobar"
self.assertEqual(str(SLOT(a)), "1foobar")
if __name__ == '__main__':
unittest.main()