More documentation, clean up tests
diff --git a/t/doc.t b/t/doc.t
index 476d4bf..1b06146 100644
--- a/t/doc.t
+++ b/t/doc.t
@@ -14,14 +14,18 @@
   ->element_exists('main.tutorial')
   ->element_exists('header')
   ->element_exists('aside nav')
-  ->content_is('');
+  ->text_is('h1 span', 'KorAP: Poliqarp+')
+  ->element_exists('li.folded.active')
+  ->text_is('li.folded.active a', 'Poliqarp+');
 
 $t->get_ok('/doc/ql/poliqarp-plus?embedded=true')
   ->status_is(200)
   ->text_like('title', qr/poliqarp/i)
   ->element_exists('aside.active')
   ->element_exists('main.tutorial')
-  ->element_exists_not('header');
+  ->element_exists_not('header')
+  ->element_exists('li.folded.active')
+  ->text_is('li.folded.active a', 'Poliqarp+');
 
 
 done_testing();