You are here

public function ScaffoldTest::scaffoldAppendTestValues 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::scaffoldAppendTestValues()
  2. 10 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldTest.php \Drupal\Tests\Composer\Plugin\Scaffold\Functional\ScaffoldTest::scaffoldAppendTestValues()

Test values for testDrupalDrupalFileWasAppended.

File

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

Class

ScaffoldTest
Tests Composer Scaffold.

Namespace

Drupal\Tests\Composer\Plugin\Scaffold\Functional

Code

public function scaffoldAppendTestValues() {
  return array_merge($this
    ->scaffoldAppendTestValuesToPermute(FALSE), $this
    ->scaffoldAppendTestValuesToPermute(TRUE), [
    [
      'drupal-drupal-append-settings',
      FALSE,
      'sites/default/settings.php',
      '<?php

// Default settings.php contents

include __DIR__ . "/settings-custom-additions.php";',
      'NOTICE Creating a new file at [web-root]/sites/default/settings.php. Examine the contents and ensure that it came out correctly.',
    ],
  ]);
}