mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 01:10:12 +02:00
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@73903 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
35 lines
777 B
Python
35 lines
777 B
Python
"""
|
|
|
|
:copyright: Copyright 2006-2009 by Oliver Schoenborn, all rights reserved.
|
|
:license: BSD, see LICENSE.txt for details.
|
|
|
|
|
|
"""
|
|
|
|
import imp_unittest, unittest
|
|
import wtc
|
|
|
|
from wx.lib.pubsub.utils import notification
|
|
from StringIO 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()
|
|
|
|
|