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 MetricTest extends AbstractTestCase
public function testGetMetrics()
{
$this->get('/api/v1/metrics')->seeJson(['data' => []]);
$this->get('/api/v1/metrics');
$this->seeJson(['data' => []]);
$this->assertResponseOk();
}
public function testGetInvalidMetric()
@@ -56,6 +58,7 @@ class MetricTest extends AbstractTestCase
'display_chart' => 1,
]);
$this->seeJson(['name' => 'Foo']);
$this->assertResponseOk();
}
public function testGetNewMetric()
@@ -64,6 +67,7 @@ class MetricTest extends AbstractTestCase
$this->get('/api/v1/metrics/1');
$this->seeJson(['name' => $incident->name]);
$this->assertResponseOk();
}
public function testPutMetric()
@@ -75,6 +79,7 @@ class MetricTest extends AbstractTestCase
'name' => 'Foo',
]);
$this->seeJson(['name' => 'Foo']);
$this->assertResponseOk();
}
public function testDeleteMetric()