We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44d9d01 commit 60a65e7Copy full SHA for 60a65e7
interface/tests/test_interface.py
@@ -28,6 +28,33 @@ def m2(self, y):
28
pass
29
30
31
+def test_implement_multiple_interfaces():
32
+
33
+ class I1(Interface): # pragma: nocover
34
+ def i1_method(self, arg1):
35
+ pass
36
37
+ def shared(self, a, b, c):
38
39
40
+ class I2(Interface): # pragma: nocover
41
+ def i2_method(self, arg2):
42
43
44
45
46
47
+ class C(implements(I1), implements(I2)): # pragma: nocover
48
49
50
51
52
53
54
55
56
57
58
def test_missing_methods():
59
60
class I(Interface): # pragma: nocover
0 commit comments