Add testing of status code to API

This commit is contained in:
James Brooks
2015-06-03 08:28:48 +01:00
parent dd8fc60209
commit fad393be1d
3 changed files with 15 additions and 2 deletions
+6 -1
View File
@@ -20,7 +20,9 @@ class IncidentTest extends AbstractTestCase
public function testGetIncidents()
{
$this->get('/api/v1/incidents')->seeJson(['data' => []]);
$this->get('/api/v1/incidents');
$this->seeJson(['data' => []]);
$this->assertResponseOk();
}
public function testGetInvalidIncident()
@@ -54,6 +56,7 @@ class IncidentTest extends AbstractTestCase
'status' => 1,
]);
$this->seeJson(['name' => 'Foo']);
$this->assertResponseOk();
}
public function testGetNewIncident()
@@ -62,6 +65,7 @@ class IncidentTest extends AbstractTestCase
$this->get('/api/v1/incidents/1');
$this->seeJson(['name' => $incident->name]);
$this->assertResponseOk();
}
public function testPutIncident()
@@ -73,6 +77,7 @@ class IncidentTest extends AbstractTestCase
'name' => 'Foo',
]);
$this->seeJson(['name' => 'Foo']);
$this->assertResponseOk();
}
public function testDeleteIncident()