1
# Copyright (c) 2005 Divmod, Inc.
2
# Copyright (c) 2007 Twisted Matrix Laboratories.
3
# See LICENSE for details.
6
Test plugin used in L{twisted.test.test_plugin}.
9
from zope.interface import classProvides
11
from twisted.plugin import IPlugin
12
from twisted.test.test_plugin import ITestPlugin
16
class FourthTestPlugin:
17
classProvides(ITestPlugin,
22
test1 = staticmethod(test1)
26
class FifthTestPlugin:
28
More documentation: I hate you.
30
classProvides(ITestPlugin,
35
test1 = staticmethod(test1)