summaryrefslogtreecommitdiff
path: root/tests/functional/p/property_with_parameters.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/p/property_with_parameters.py')
-rw-r--r--tests/functional/p/property_with_parameters.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/functional/p/property_with_parameters.py b/tests/functional/p/property_with_parameters.py
index 2f521991f..9f746f75f 100644
--- a/tests/functional/p/property_with_parameters.py
+++ b/tests/functional/p/property_with_parameters.py
@@ -1,7 +1,21 @@
# pylint: disable=missing-docstring, too-few-public-methods
+from abc import ABCMeta, abstractproperty
class Cls:
@property
def attribute(self, param, param1): # [property-with-parameters]
return param + param1
+
+
+class MyClassBase(metaclass=ABCMeta):
+ """MyClassBase."""
+
+ @abstractproperty
+ def example(self):
+ """Getter."""
+
+ @abstractproperty
+ @example.setter
+ def example(self, value):
+ """Setter."""