mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06:00
5f313a65ad
* command: remove 0.12upgrade and related `configupgrade` library * leave deprecation warning for 0.12upgrade to point users to v0.12
27 lines
475 B
Go
27 lines
475 B
Go
package command
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/mitchellh/cli"
|
|
)
|
|
|
|
func TestZeroTwelveUpgrade_deprecated(t *testing.T) {
|
|
ui := new(cli.MockUi)
|
|
c := &ZeroTwelveUpgradeCommand{
|
|
Meta: Meta{
|
|
Ui: ui,
|
|
},
|
|
}
|
|
|
|
if code := c.Run([]string{}); code != 0 {
|
|
t.Fatalf("bad: \n%s", ui.ErrorWriter.String())
|
|
}
|
|
|
|
output := ui.OutputWriter.String()
|
|
if !strings.Contains(output, "The 0.12upgrade command is deprecated.") {
|
|
t.Fatal("unexpected output:", output)
|
|
}
|
|
}
|