Changeset 10606 for main/waeup.cas/trunk
- Timestamp:
- 10 Sep 2013, 14:59:02 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.cas/trunk/waeup/cas/tests/test_server.py
r10604 r10606 82 82 assert app._get_template('login.html') is not None 83 83 assert app._get_template('not-existent.html') is None 84 # parts of header and footer are replaced 85 assert 'PART_HEADER' not in app._get_template('login.html') 86 assert 'PART_FOOTER' not in app._get_template('login.html') 84 87 85 88 def test_call_root(self): … … 571 574 assert get_template('not-existing-template') is None 572 575 assert get_template('login.html') is not None 576 # parts of header and footer are replaced 577 assert 'PART_HEADER' not in get_template('login.html') 578 assert 'PART_FOOTER' not in get_template('login.html') 573 579 574 580 def test_delete_session_cookie(self):
Note: See TracChangeset for help on using the changeset viewer.