Преглед изворни кода

Fix unit tests

tags/v9.1.0beta1
Roeland Jago Douma пре 8 година
родитељ
комит
54b637e83c
No account linked to committer's email address
1 измењених фајлова са 1 додато и 15 уклоњено
  1. 1
    15
      tests/lib/AutoLoaderTest.php

+ 1
- 15
tests/lib/AutoLoaderTest.php Прегледај датотеку

@@ -19,18 +19,6 @@ class AutoLoaderTest extends TestCase {
$this->loader = new \OC\AutoLoader([]);
}

public function testLeadingSlashOnClassName() {
$this->assertEquals([
\OC::$SERVERROOT . '/lib/public/files/storage/local.php',
], $this->loader->findClass('\OCP\Files\Storage\Local'));
}

public function testNoLeadingSlashOnClassName() {
$this->assertEquals([
\OC::$SERVERROOT . '/lib/public/files/storage/local.php',
], $this->loader->findClass('OCP\Files\Storage\Local'));
}

public function testLegacyPath() {
$this->assertEquals([
\OC::$SERVERROOT . '/lib/private/legacy/files.php',
@@ -50,9 +38,7 @@ class AutoLoaderTest extends TestCase {
}

public function testLoadPublicNamespace() {
$this->assertEquals([
\OC::$SERVERROOT . '/lib/public/foo/bar.php',
], $this->loader->findClass('OCP\Foo\Bar'));
$this->assertEquals([], $this->loader->findClass('OCP\Foo\Bar'));
}

public function testLoadAppNamespace() {

Loading…
Откажи
Сачувај