Removed the code coverage ignore instructions, tests must cover this.

This commit is contained in:
James Cole
2014-07-06 21:24:37 +02:00
parent 2f5afc80a3
commit 8d209f673c
3 changed files with 1 additions and 5 deletions

View File

@@ -28,7 +28,6 @@ class AccountController extends \BaseController
];
foreach ($all as $account) {
// @codeCoverageIgnoreStart
switch ($account->accounttype->description) {
case 'Default account':
$list['personal'][] = $account;
@@ -44,7 +43,6 @@ class AccountController extends \BaseController
break;
}
// @codeCoverageIgnoreEnd
}
return View::make('accounts.index')->with('accounts', $list);