update unit test

This commit is contained in:
Lendemor 2025-02-07 00:04:10 +01:00
parent 78277af4e9
commit 0e45cc5b0d

View File

@ -7,6 +7,7 @@ def test_page_decorator():
def foo_():
return text("foo")
DECORATED_PAGES.clear()
assert len(DECORATED_PAGES) == 0
decorated_foo_ = page()(foo_)
assert decorated_foo_ == foo_