Fixed some coverage.

This commit is contained in:
James Cole
2015-05-15 23:02:42 +02:00
parent 3e65733dc5
commit 49d7dea086
3 changed files with 87 additions and 7 deletions

View File

@@ -324,7 +324,7 @@ class GoogleChartControllerTest extends TestCase
Preferences::shouldReceive('get')->withAnyArgs()->andReturn($language);
$this->call('GET', '/chart/reports/income-expenses/2015');
$this->call('GET', '/chart/reports/income-expenses/2015/shared');
$this->assertResponseOk();
}
@@ -353,7 +353,7 @@ class GoogleChartControllerTest extends TestCase
Preferences::shouldReceive('get')->withAnyArgs()->andReturn($language);
$this->call('GET', '/chart/reports/income-expenses-sum/2015');
$this->call('GET', '/chart/reports/income-expenses-sum/2015/shared');
}
}