Child: [d8922d] (diff)

Download this file

test_root.py    14 lines (9 with data), 466 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
from alluratest.controller import TestController
class TestRootController(TestController):
def test_root(self):
response = self.app.get('/downloads/nav.json')
root = self.app.get('/p/test/home/')
nav_links = root.html.find('div', dict(id='top_nav')).findAll('a')
assert len(nav_links) == len(response.json['menu'])
for nl, entry in zip(nav_links, response.json['menu']):
assert nl['href'] == entry['url']