cubicweb/web/test/unittest_views_wdoc.py
author Philippe Pepiot <philippe.pepiot@logilab.fr>
Wed, 04 Dec 2019 16:12:15 +0100
changeset 12788 6086f3d503a5
parent 12337 04ff0d3ef1d3
permissions -rw-r--r--
[pkg] require logilab-common >= 1.5.2 Followup a902521

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()