summaryrefslogtreecommitdiff
path: root/pecan/tests/test_hooks.py
diff options
context:
space:
mode:
Diffstat (limited to 'pecan/tests/test_hooks.py')
-rw-r--r--pecan/tests/test_hooks.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/pecan/tests/test_hooks.py b/pecan/tests/test_hooks.py
index d3fe05b..a15368e 100644
--- a/pecan/tests/test_hooks.py
+++ b/pecan/tests/test_hooks.py
@@ -1681,6 +1681,19 @@ class TestRestControllerWithHooks(PecanTestCase):
def get_all(self):
return 'Hello, World!'
+ @staticmethod
+ def static(cls):
+ return 'static'
+
+ @property
+ def foo(self):
+ return 'bar'
+
+ def testing123(self):
+ return 'bar'
+
+ unhashable = [1, 'two', 3]
+
app = TestApp(
make_app(
RootController()