3
0
Fork 0
wuttaweb/tests/util.py
Lance Edgar f33448f64a feat: basic support for displaying version history
this is not terribly feature-rich yet, just the basics
2025-10-29 18:32:35 -05:00

15 lines
298 B
Python

# -*- coding: utf-8; -*-
from wuttaweb.menus import MenuHandler
class NullMenuHandler(MenuHandler):
"""
Dummy :term:`menu handler` for testing.
"""
def make_menus(self, request, **kwargs):
"""
This always returns an empty menu set.
"""
return []