Kraken\_Unit\Filesystem\FilesystemManagerTest::testApiUnmountFilesystem_UnmountsFilesystem_WhenFsExists PHP Method

testApiUnmountFilesystem_UnmountsFilesystem_WhenFsExists() public method

public testApiUnmountFilesystem_UnmountsFilesystem_WhenFsExists ( Kraken\Filesystem\FilesystemManagerInterface $fs )
$fs Kraken\Filesystem\FilesystemManagerInterface
    public function testApiUnmountFilesystem_UnmountsFilesystem_WhenFsExists(FilesystemManagerInterface $fs)
    {
        $prefix = 'fs';
        $this->assertTrue($fs->existsFilesystem($prefix));
        $fs->unmountFilesystem($prefix);
        $this->assertFalse($fs->existsFilesystem($prefix));
    }
FilesystemManagerTest