Looking for travis exit problem

This commit is contained in:
Master Yoda 2018-07-05 10:55:38 -07:00
parent 8eae514bee
commit 18fdb2669a
No known key found for this signature in database
GPG Key ID: CED549230775AD5B

View File

@ -16,6 +16,19 @@ class FeatureTestCaseTest extends FeatureTestCase
$this->skipEvents();
}
public function testCallGet()
{
$this->withRoutes([
['get', 'home', function() {
return 'Hello World';
}]
]);
$response = $this->get('home');
$response->assertSee('Hello World');
$response->assertDontSee('Again');
}
public function testCallSimpleGet()
{
$this->withRoutes([
@ -32,19 +45,6 @@ class FeatureTestCaseTest extends FeatureTestCase
$this->assertEquals(200, $response->response->getStatusCode());
}
public function testCallGet()
{
$this->withRoutes([
['get', 'home', function() {
return 'Hello World';
}]
]);
$response = $this->get('home');
$response->assertSee('Hello World');
$response->assertDontSee('Again');
}
public function testCallPost()
{
$this->withRoutes([