summaryrefslogtreecommitdiffstats
path: root/tests/tree_page_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tree_page_test.py')
-rw-r--r--tests/tree_page_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tree_page_test.py b/tests/tree_page_test.py
index 891e940..a298728 100644
--- a/tests/tree_page_test.py
+++ b/tests/tree_page_test.py
@@ -53,6 +53,7 @@ def test_context_empty():
assert(context['content_subdir'] == '')
assert(context['subdir'] == '/123/t/tree/path')
assert(context['title'] == 'tree test: Tree')
+ assert(context['breadcrumbs'] == '[/](/123/t/)')
def test_context_entries():
tree = MagicMock()
@@ -111,7 +112,6 @@ def test_get_files():
commit.tree = tree
expected = []
for case in [ None, '.file', 'README', 'main.cc' ]:
- print(str(case))
if case:
add_node(tree, case)
expected.append(case)