]> BookStack Code Mirror - bookstack/blobdiff - tests/Api/ApiDocsTest.php
Added language list favourites sorting, updated styles
[bookstack] / tests / Api / ApiDocsTest.php
index 062adce5376821a8b1914b734039c107edf6fa2b..56b09cfb85d707142c875af1daa77a174aaa6979 100644 (file)
@@ -10,6 +10,12 @@ class ApiDocsTest extends TestCase
 
     protected $endpoint = '/api/docs';
 
+    public function test_api_endpoint_redirects_to_docs()
+    {
+        $resp = $this->actingAsApiEditor()->get('/api');
+        $resp->assertRedirect('api/docs');
+    }
+
     public function test_docs_page_returns_view_with_docs_content()
     {
         $resp = $this->actingAsApiEditor()->get($this->endpoint);