Archive boards

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2017-05-04 10:58:35 +02:00
parent fa5cba631f
commit 8c04ea8dc9
23 changed files with 305 additions and 80 deletions

View File

@@ -23,7 +23,7 @@
namespace OCA\Deck\Db;
use OCA\Deck\CardArchivedException;
use OCA\Deck\ArchivedItemException;
use OCA\Deck\Controller\PageController;
use OCA\Deck\NoPermissionException;
use OCA\Deck\NotFoundException;
@@ -45,7 +45,7 @@ class ExceptionsTest extends \PHPUnit_Framework_TestCase {
}
public function testCardArchivedException() {
$e = new CardArchivedException('foo');
$e = new ArchivedItemException('foo');
$this->assertEquals('foo', $e->getMessage());
}