summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/db.php3
-rw-r--r--tests/lib/files/cache/watcher.php3
-rw-r--r--tests/lib/geo.php4
3 files changed, 10 insertions, 0 deletions
diff --git a/tests/lib/db.php b/tests/lib/db.php
index 440f3fb6bfd..924236604c6 100644
--- a/tests/lib/db.php
+++ b/tests/lib/db.php
@@ -51,6 +51,9 @@ class Test_DB extends PHPUnit_Framework_TestCase {
$this->assertFalse($row);
}
+ /**
+ * @medium
+ */
public function testNOW() {
$query = OC_DB::prepare('INSERT INTO *PREFIX*'.$this->table2.' (`fullname`,`uri`) VALUES (NOW(),?)');
$result = $query->execute(array('uri_2'));
diff --git a/tests/lib/files/cache/watcher.php b/tests/lib/files/cache/watcher.php
index d9301a903cb..749b1ab75a3 100644
--- a/tests/lib/files/cache/watcher.php
+++ b/tests/lib/files/cache/watcher.php
@@ -29,6 +29,9 @@ class Watcher extends \PHPUnit_Framework_TestCase {
}
}
+ /**
+ * @medium
+ */
function testWatcher() {
$storage = $this->getTestStorage();
$cache = $storage->getCache();
diff --git a/tests/lib/geo.php b/tests/lib/geo.php
index 82e61608687..2c3611c092e 100644
--- a/tests/lib/geo.php
+++ b/tests/lib/geo.php
@@ -7,6 +7,10 @@
*/
class Test_Geo extends PHPUnit_Framework_TestCase {
+
+ /**
+ * @medium
+ */
function testTimezone() {
$result = OC_Geo::timezone(3, 3);
$expected = 'Africa/Porto-Novo';