You are here

protected function ScaffoldTest::assertHtaccessExcluded in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldTest.php \Drupal\Tests\Composer\Plugin\Scaffold\Functional\ScaffoldTest::assertHtaccessExcluded()
  2. 10 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldTest.php \Drupal\Tests\Composer\Plugin\Scaffold\Functional\ScaffoldTest::assertHtaccessExcluded()

Asserts that the .htaccess file was excluded by the test.

Parameters

string $docroot: The path to the System-under-Test's docroot.

1 call to ScaffoldTest::assertHtaccessExcluded()
ScaffoldTest::testScaffoldOverridingSettingsExcludingHtaccess in core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldTest.php
Asserts that the drupal/assets scaffold files correct for sut.

File

core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldTest.php, line 372

Class

ScaffoldTest
Tests Composer Scaffold.

Namespace

Drupal\Tests\Composer\Plugin\Scaffold\Functional

Code

protected function assertHtaccessExcluded($docroot) {

  // Ensure that the .htaccess.txt file was not written, as our
  // top-level composer.json excludes it from the files to scaffold.
  $this
    ->assertFileNotExists($docroot . '/.htaccess');
}