From 922e0fb6de06a98774418612e0b0f75af72b6dbb Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sat, 25 Jun 2016 14:34:46 -0400 Subject: Rewrite integration tests to run with Docker containers --- tests/integration/BoardTest.php | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'tests/integration/BoardTest.php') diff --git a/tests/integration/BoardTest.php b/tests/integration/BoardTest.php index bf8d50b9..aa0f61ff 100644 --- a/tests/integration/BoardTest.php +++ b/tests/integration/BoardTest.php @@ -1,17 +1,21 @@ assertEquals(1, $this->app->createProject('A project')); + $this->assertCreateTeamProject(); + $this->assertGetBoard(); } - public function testGetBoard() + public function assertGetBoard() { - $board = $this->app->getBoard(1); + $board = $this->app->getBoard($this->projectId); + $this->assertNotNull($board); $this->assertCount(1, $board); $this->assertEquals('Default swimlane', $board[0]['name']); -- cgit v1.2.3