From 4057abb7e7d73a6e9d081efef32f3d282f22d508 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Tue, 12 Sep 2017 15:07:50 +0100 Subject: [PATCH] Get rid of useless example tests --- tests/Browser/ExampleTest.php | 23 ----------------------- tests/Feature/ExampleTest.php | 21 --------------------- tests/Unit/ExampleTest.php | 19 ------------------- 3 files changed, 63 deletions(-) delete mode 100644 tests/Browser/ExampleTest.php delete mode 100644 tests/Feature/ExampleTest.php delete mode 100644 tests/Unit/ExampleTest.php diff --git a/tests/Browser/ExampleTest.php b/tests/Browser/ExampleTest.php deleted file mode 100644 index a0099346..00000000 --- a/tests/Browser/ExampleTest.php +++ /dev/null @@ -1,23 +0,0 @@ -browse(function (Browser $browser) { - $browser->visit('/') - ->assertSee('Built with love'); - }); - } -} diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php deleted file mode 100644 index f31e495c..00000000 --- a/tests/Feature/ExampleTest.php +++ /dev/null @@ -1,21 +0,0 @@ -get('/'); - - $response->assertStatus(200); - } -} diff --git a/tests/Unit/ExampleTest.php b/tests/Unit/ExampleTest.php deleted file mode 100644 index e9fe19c6..00000000 --- a/tests/Unit/ExampleTest.php +++ /dev/null @@ -1,19 +0,0 @@ -assertTrue(true); - } -}