Bläddra i källkod

Fix unit tests

tags/v9.1.0beta1
Roeland Jago Douma 8 år sedan
förälder
incheckning
54b637e83c
Inget konto är kopplat till bidragsgivarens mejladress
1 ändrade filer med 1 tillägg och 15 borttagningar
  1. 1
    15
      tests/lib/AutoLoaderTest.php

+ 1
- 15
tests/lib/AutoLoaderTest.php Visa fil

@@ -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() {

Laddar…
Avbryt
Spara