File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,9 @@ public function testComposerInstallAndUpdate() {
6969 $ this ->composer ('install ' );
7070 $ this ->assertFileExists ($ this ->tmpDir . DIRECTORY_SEPARATOR . 'core ' , 'Drupal core is installed. ' );
7171 $ exampleScaffoldFile = $ this ->tmpDir . DIRECTORY_SEPARATOR . 'index.php ' ;
72- $ this ->assertFileExists ($ exampleScaffoldFile , 'Scaffold file given. ' );
72+ $ this ->assertFileNotExists ($ exampleScaffoldFile , 'Scaffold file should not be automatically installed. ' );
73+ $ this ->composer ('drupal-scaffold ' );
74+ $ this ->assertFileExists ($ exampleScaffoldFile , 'Scaffold file should be installed by "drupal-scaffold" command. ' );
7375
7476 // We touch a scaffold file, so we can check the file was modified after
7577 // the scaffold update.
You can’t perform that action at this time.
0 commit comments