raise failed tests from first commit to size @medium

This commit is contained in:
Jörn Friedrich Dreyer 2013-06-10 10:17:47 +02:00
parent 73fb722a9e
commit b6f8d2b859
4 changed files with 13 additions and 0 deletions

View File

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

View File

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

View File

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

View File

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