az_blob_fs-8.x-1.x-dev/tests/src/Functional/AzBlobFsInstallTest.php
tests/src/Functional/AzBlobFsInstallTest.php
<?php
namespace Drupal\Tests\az_blob_fs\Functional;
use Drupal\FunctionalJavascriptTests\WebDriverTestBase;
/**
* Test the Azure Blog Storage module install without errors.
*
* @group az_blob_fs
*/
class AzBlobFsInstallTest extends WebDriverTestBase {
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* {@inheritdoc}
*/
protected static $modules = [
'az_blob_fs',
'image',
'key',
];
/**
* Assert that the az_blob_fs module installed correctly.
*/
public function testModuleInstalls() {
// If we get here, then the module was successfully installed during the
// setUp phase without throwing any Exceptions. Assert that TRUE is true,
// so at least one assertion runs, and then exit.
$this->assertTrue(TRUE, 'Module installed correctly.');
}
}
