raise failed tests from first commit to size @medium

remotes/origin/stable6
Jörn Friedrich Dreyer 12 years ago
parent 73fb722a9e
commit b6f8d2b859
  1. 3
      apps/files_encryption/tests/stream.php
  2. 3
      tests/lib/db.php
  3. 3
      tests/lib/files/cache/watcher.php
  4. 4
      tests/lib/geo.php

@ -140,6 +140,9 @@ class Test_Encryption_Stream extends \PHPUnit_Framework_TestCase {
$view->unlink($filename);
}
/**
* @medium
*/
function testStreamSetTimeout() {
$filename = '/tmp-' . time();
$view = new \OC\Files\View('/' . $this->userId . '/files');

@ -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'));

@ -29,6 +29,9 @@ class Watcher extends \PHPUnit_Framework_TestCase {
}
}
/**
* @medium
*/
function testWatcher() {
$storage = $this->getTestStorage();
$cache = $storage->getCache();

@ -7,6 +7,10 @@
*/
class Test_Geo extends PHPUnit_Framework_TestCase {
/**
* @medium
*/
function testTimezone() {
$result = OC_Geo::timezone(3, 3);
$expected = 'Africa/Porto-Novo';

Loading…
Cancel
Save