~certify-web-dev/twisted/certify-trunk

« back to all changes in this revision

Viewing changes to twisted/test/test_manhole.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-01-17 14:52:35 UTC
  • mfrom: (1.1.5 upstream) (2.1.2 etch)
  • Revision ID: james.westby@ubuntu.com-20070117145235-btmig6qfmqfen0om
Tags: 2.5.0-0ubuntu1
New upstream version, compatible with python2.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
from twisted.trial import unittest
7
7
from twisted.manhole import service
8
 
from twisted.internet import app
9
8
from twisted.spread.util import LocalAsRemote
10
9
 
11
10
class Dummy:
41
40
    sync_setZero = setZero
42
41
    sync_getMessages = getMessages
43
42
 
44
 
class DummyApp(app.Application):
45
 
    name = 'None'
46
 
 
47
43
class ManholeTest(unittest.TestCase):
48
44
    """Various tests for the manhole service.
49
45