Files
Phoenix/unittests/test_lib_pubsub_defaultlog.py
Robin Dunn 86357cc0a1 Merge branch 'remove-six'
# Conflicts:
#	unittests/test_string.py
#	unittests/test_wxdatetime.py
2016-06-30 20:14:58 -07:00

35 lines
773 B
Python

"""
:copyright: Copyright 2006-2009 by Oliver Schoenborn, all rights reserved.
:license: BSD, see LICENSE.txt for details.
"""
import unittest
from unittests import wtc
from wx.lib.pubsub.utils import notification
from six import StringIO
#---------------------------------------------------------------------------
class lib_pubsub_DefaultLog(wtc.PubsubTestCase):
def testNotifications(self):
capture = StringIO()
logger = notification.useNotifyByWriteFile(capture)
def block():
def listener(): pass
self.pub.subscribe(listener, 'testNotifications')
block()
#---------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()