(self)
| 81 | Tests the breadcrumb functionality used by the HTML renderer. |
| 82 | """ |
| 83 | def test_root_breadcrumbs(self): |
| 84 | url = '/' |
| 85 | assert get_breadcrumbs(url) == [('Root', '/')] |
| 86 | |
| 87 | def test_resource_root_breadcrumbs(self): |
| 88 | url = '/resource/' |
nothing calls this directly
no test coverage detected