From 81df6a36b4b77fcf3f76658d7359fae0d541cf61 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Sun, 30 Nov 2014 19:43:34 -0500 Subject: Add getTimezone() procedure to the API --- tests/functionals/ApiTest.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests') diff --git a/tests/functionals/ApiTest.php b/tests/functionals/ApiTest.php index ece7b46d..a8f8869b 100644 --- a/tests/functionals/ApiTest.php +++ b/tests/functionals/ApiTest.php @@ -29,6 +29,7 @@ class Api extends PHPUnit_Framework_TestCase $service->getInstance(); $pdo->exec("UPDATE settings SET value='".API_KEY."' WHERE option='api_token'"); + $pdo->exec("UPDATE settings SET value='Europe/Paris' WHERE option='application_timezone'"); $pdo = null; } @@ -48,6 +49,12 @@ class Api extends PHPUnit_Framework_TestCase return $tasks[0]['id']; } + public function testGetTimezone() + { + $timezone = $this->client->getTimezone(); + $this->assertEquals('Europe/Paris', $timezone); + } + public function testRemoveAll() { $projects = $this->client->getAllProjects(); -- cgit v1.2.3