cubicweb/web/test/unittest_views_wdoc.py
author Laurent Peuch <cortex@worlddomination.be>
Thu, 19 Dec 2019 01:04:07 +0100
changeset 12829 0e9ce897dfdf
parent 12337 04ff0d3ef1d3
permissions -rw-r--r--
[mypy/fix] Incompatible types in assignment (expression has type "staticmethod", variable has type "Callable[[ETag], Any]")

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