summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/class-staticclassmethod.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-02 14:13:26 +0100
committerDamien George <damien.p.george@gmail.com>2014-04-02 14:13:26 +0100
commit93b7faa29a647c233a7ee2cf292c657e09753824 (patch)
tree772a9beb4fc6efcc041f0650d7d9ceed8e8f01ed /tests/basics/class-staticclassmethod.py
parente4c834fc1ef5459c0a1f8124deac8fab72e73819 (diff)
downloadmicropython-93b7faa29a647c233a7ee2cf292c657e09753824.tar.gz
micropython-93b7faa29a647c233a7ee2cf292c657e09753824.zip
py: Factor out static/class method unwrapping code; add tests.
Diffstat (limited to 'tests/basics/class-staticclassmethod.py')
-rw-r--r--tests/basics/class-staticclassmethod.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/basics/class-staticclassmethod.py b/tests/basics/class-staticclassmethod.py
new file mode 100644
index 0000000000..1cb59d5c7b
--- /dev/null
+++ b/tests/basics/class-staticclassmethod.py
@@ -0,0 +1,25 @@
+# test static and class methods
+
+class C:
+ @staticmethod
+ def f(rhs):
+ print('f', rhs)
+ @classmethod
+ def g(self, rhs):
+ print('g', rhs)
+
+ # builtin wrapped in staticmethod
+ @staticmethod
+ def __sub__(rhs):
+ print('sub', rhs)
+ # builtin wrapped in classmethod
+ @classmethod
+ def __add__(self, rhs):
+ print('add', rhs)
+
+c = C()
+
+c.f(0)
+c.g(0)
+c - 1
+c + 2