-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f5adacf
commit 2b83df7
Showing
2 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,6 +51,20 @@ public function testPushArtifact(): void { | |
$this->assertStringContainsString('[0] Sample application 1', $output); | ||
$this->assertStringContainsString('Choose a Cloud Platform environment', $output); | ||
$this->assertStringContainsString('[0] Dev, dev (vcs: master)', $output); | ||
$this->assertStringContainsString('Acquia CLI will:', $output); | ||
$this->assertStringContainsString('- git clone master from [email protected]:site.git', $output); | ||
$this->assertStringContainsString('- Compile the contents of vfs://root/project into an artifact', $output); | ||
$this->assertStringContainsString('- Copy the artifact files into the checked out copy of master', $output); | ||
$this->assertStringContainsString('- Commit changes and push the master branch', $output); | ||
$this->assertStringContainsString('Removing', $output); | ||
$this->assertStringContainsString('Initializing Git', $output); | ||
$this->assertStringContainsString('Global .gitignore file', $output); | ||
$this->assertStringContainsString('Removing vendor', $output); | ||
$this->assertStringContainsString('Mirroring source', $output); | ||
$this->assertStringContainsString('Installing Composer', $output); | ||
$this->assertStringContainsString('Finding Drupal', $output); | ||
$this->assertStringContainsString('Removing sensitive', $output); | ||
$this->assertStringContainsString('Adding and committing', $output); | ||
$this->assertStringContainsString('Pushing changes to Acquia Git ([email protected]:site.git)', $output); | ||
} | ||
|
||
|
@@ -81,6 +95,7 @@ public function testPushTagArtifact(): void { | |
$this->assertStringContainsString('Select a Cloud Platform application:', $output); | ||
$this->assertStringContainsString('[0] Sample application 1', $output); | ||
$this->assertStringContainsString('Pushing changes to Acquia Git ([email protected]:site.git)', $output); | ||
$this->assertStringContainsString('Commit changes and push the 1.2.0-build tag', $output); | ||
} | ||
|
||
public function testPushArtifactWithAcquiaCliFile(): void { | ||
|