NodeorderUninstallTest.php in Node Order 8
File
tests/src/Kernel/NodeorderUninstallTest.php
View source
<?php
namespace Drupal\Tests\nodeorder\Kernel;
class NodeorderUninstallTest extends NodeorderInstallTestBase {
public function testUninstall() {
$schema = $this->database
->schema();
$this
->assertTrue($schema
->fieldExists('taxonomy_index', 'weight'));
$this
->assertTrue($schema
->indexExists('taxonomy_index', 'weight'));
$this->moduleInstaller
->uninstall([
'nodeorder',
]);
$this
->assertFalse($schema
->fieldExists('taxonomy_index', 'weight'));
$this
->assertFalse($schema
->indexExists('taxonomy_index', 'weight'));
}
}