view tests/rdrutil.py @ 976:b9374b3682f0

pagination: Prevent a possible crash when paginating things without a current page. This is mostly for unit testing.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 17 Oct 2017 01:09:55 -0700
parents 72f17534d58e
children
line wrap: on
line source

from piecrust.rendering import RenderingContext, render_page


def render_simple_page(page):
    ctx = RenderingContext(page)
    rp = render_page(ctx)
    return rp.content