summaryrefslogtreecommitdiff
path: root/tests/cmdline/cmd_showbc.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-04-19 09:49:48 +1000
committerDamien George <damien.p.george@gmail.com>2017-04-22 23:39:38 +1000
commit30badd1ce1fabd26e54fc445f07846306aa19cef (patch)
tree67eb4859d6acd8e234532e1a1ea5b4691e5dbdf6 /tests/cmdline/cmd_showbc.py
parentdd11af209d226b7d18d5148b239662e30ed60bad (diff)
tests: Add tests for calling super and loading a method directly.
Diffstat (limited to 'tests/cmdline/cmd_showbc.py')
-rw-r--r--tests/cmdline/cmd_showbc.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/cmdline/cmd_showbc.py b/tests/cmdline/cmd_showbc.py
index 2f4e953bb..6e99fc418 100644
--- a/tests/cmdline/cmd_showbc.py
+++ b/tests/cmdline/cmd_showbc.py
@@ -150,3 +150,7 @@ class Class:
# delete name
del Class
+
+# load super method
+def f(self):
+ super().f()