def test_default_kwarg(self):
app = bottle.Bottle()
br = bottlereact.BottleReact(app, prod=True, default_render_html_kwargs={'title':'abc'})
html = br.render_html(br.HelloWorld(), template='title').strip()
self.assertEqual(html, 'abc')
html = br.render_html(br.HelloWorld(), template='title', title='xyz').strip()
self.assertEqual(html, 'xyz')
评论列表
文章目录