cubicweb/web/test/unittest_views_wdoc.py
author Laurent Peuch <cortex@worlddomination.be>
Wed, 11 Sep 2019 18:31:08 +0200
branch3.26
changeset 12727 1853c5e13154
parent 12337 04ff0d3ef1d3
permissions -rw-r--r--
[fix] reference to underclared and unused variable kwargs

from cubicweb.devtools import testlib


class WdocViewsTC(testlib.CubicWebTC):

    def test(self):
        with self.admin_access.web_request(fid='main') as req:
            page = req.view('wdoc')
        self.assertIn(u'Site documentation', page)
        # This part is renderend through rst extension (..winclude directive).
        self.assertIn(u'This web application is based on the CubicWeb knowledge management system',
                      page)


if __name__ == '__main__':
    import unittest
    unittest.main()