command/push: fix tests to be vcs=false GH-8478

This commit is contained in:
Mitchell Hashimoto 2016-08-25 14:09:34 -07:00
parent fc67b63d63
commit 2f8baa4580
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 6 additions and 0 deletions

View File

@ -107,6 +107,7 @@ func TestPush_noUploadModules(t *testing.T) {
defer os.Remove(testStateFileRemote(t, s))
args := []string{
"-vcs=false",
"-name=mitchellh/tf-test",
"-upload-modules=false",
path,
@ -115,9 +116,14 @@ func TestPush_noUploadModules(t *testing.T) {
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
}
// NOTE: The duplicates below are not ideal but are how things work
// currently due to how we manually add the files to the archive. This
// is definitely a "bug" we can fix in the future.
actual := testArchiveStr(t, archivePath)
expected := []string{
".terraform/",
".terraform/",
".terraform/terraform.tfstate",
".terraform/terraform.tfstate",
"child/",
"child/main.tf",