summaryrefslogtreecommitdiff
path: root/test/input/func_interfaces.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/input/func_interfaces.py')
-rw-r--r--test/input/func_interfaces.py114
1 files changed, 0 insertions, 114 deletions
diff --git a/test/input/func_interfaces.py b/test/input/func_interfaces.py
deleted file mode 100644
index 9756183..0000000
--- a/test/input/func_interfaces.py
+++ /dev/null
@@ -1,114 +0,0 @@
-# pylint:disable=R0201
-"""docstring"""
-__revision__ = ''
-
-class Interface(object):
- """base class for interfaces"""
-
-class IMachin(Interface):
- """docstring"""
- def truc(self):
- """docstring"""
-
- def troc(self, argument):
- """docstring"""
-
-class Correct1(object):
- """docstring"""
- __implements__ = IMachin
-
- def __init__(self):
- pass
-
- def truc(self):
- """docstring"""
- pass
-
- def troc(self, argument):
- """docstring"""
- pass
-
-class Correct2(object):
- """docstring"""
- __implements__ = (IMachin,)
-
- def __init__(self):
- pass
-
- def truc(self):
- """docstring"""
- pass
-
- def troc(self, argument):
- """docstring"""
- print argument
-
-class MissingMethod(object):
- """docstring"""
- __implements__ = IMachin,
-
- def __init__(self):
- pass
-
- def troc(self, argument):
- """docstring"""
- print argument
-
- def other(self):
- """docstring"""
-
-class BadArgument(object):
- """docstring"""
- __implements__ = (IMachin,)
-
- def __init__(self):
- pass
-
- def truc(self):
- """docstring"""
- pass
-
- def troc(self):
- """docstring"""
- pass
-
-class InterfaceCantBeFound(object):
- """docstring"""
- __implements__ = undefined
-
- def __init__(self):
- """only to make pylint happier"""
-
- def please(self):
- """public method 1/2"""
-
- def besilent(self):
- """public method 2/2"""
-
-class InterfaceCanNowBeFound(object):
- """docstring"""
- __implements__ = BadArgument.__implements__ + Correct2.__implements__
-
- def __init__(self):
- """only to make pylint happier"""
-
- def please(self):
- """public method 1/2"""
-
- def besilent(self):
- """public method 2/2"""
-
-
-class EmptyImplements(object):
- """no pb"""
- __implements__ = ()
- def __init__(self):
- """only to make pylint happier"""
-
- def please(self):
- """public method 1/2"""
-
- def besilent(self):
- """public method 2/2"""
-
-