server/src/tests/Repositories/DocumentRepositoryTest.php
changeset 2 00e2916104fe
child 4 f55970e41793
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/server/src/tests/Repositories/DocumentRepositoryTest.php	Tue Jun 23 17:01:39 2015 +0200
@@ -0,0 +1,12 @@
+<?php
+
+class DocumentRepositoryTest extends TestCase {
+
+    public function testBasicExample()
+    {
+        $response = $this->call('GET', '/');
+
+        $this->assertEquals(200, $response->getStatusCode());
+    }
+
+}