summaryrefslogtreecommitdiff
path: root/tests/integration/BoardTest.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-06-26 10:25:13 -0400
committerFrederic Guillot <fred@kanboard.net>2016-06-26 10:25:13 -0400
commit4a230d331ec220fc32a48525afb308af0d9787fa (patch)
tree514aa3d703155b7f97a2c77147c9fd74cef60f84 /tests/integration/BoardTest.php
parent922e0fb6de06a98774418612e0b0f75af72b6dbb (diff)
Added application and project roles validation for API procedure calls
Diffstat (limited to 'tests/integration/BoardTest.php')
-rw-r--r--tests/integration/BoardTest.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/integration/BoardTest.php b/tests/integration/BoardTest.php
deleted file mode 100644
index aa0f61ff..00000000
--- a/tests/integration/BoardTest.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
-require_once __DIR__.'/BaseIntegrationTest.php';
-
-class BoardTest extends BaseIntegrationTest
-{
- protected $projectName = 'My project to test board';
-
- public function testAll()
- {
- $this->assertCreateTeamProject();
- $this->assertGetBoard();
- }
-
- public function assertGetBoard()
- {
- $board = $this->app->getBoard($this->projectId);
- $this->assertNotNull($board);
- $this->assertCount(1, $board);
- $this->assertEquals('Default swimlane', $board[0]['name']);
-
- $this->assertCount(4, $board[0]['columns']);
- $this->assertEquals('Ready', $board[0]['columns'][1]['title']);
- }
-}