summaryrefslogtreecommitdiff
path: root/tests/integration/BoardTest.php
diff options
context:
space:
mode:
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']);
- }
-}