aboutsummaryrefslogtreecommitdiff
path: root/tests/ExampleTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ExampleTest.php')
-rw-r--r--tests/ExampleTest.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ExampleTest.php b/tests/ExampleTest.php
new file mode 100644
index 0000000..67c9299
--- /dev/null
+++ b/tests/ExampleTest.php
@@ -0,0 +1,15 @@
+<?php
+
+class ExampleTest extends TestCase
+{
+ /**
+ * A basic test example.
+ *
+ * @return void
+ */
+ public function testBasicExample()
+ {
+ $this->visit('/')
+ ->see('Lumen.');
+ }
+}