summaryrefslogtreecommitdiff
path: root/pkg/machine/e2e/config_stop.go
diff options
context:
space:
mode:
authorPaul Holzinger <pholzing@redhat.com>2022-07-21 11:36:32 +0200
committerMatthew Heon <matthew.heon@pm.me>2022-07-26 14:24:30 -0400
commitce790e61b1a0a983a1900b76b1ad9864d15b1496 (patch)
tree4c07afe3d699e73ce77ed171342ff58869a24bc4 /pkg/machine/e2e/config_stop.go
parentff7259567663ee5d6cf9b3e8e62c5d4ac39c47d6 (diff)
downloadpodman-ce790e61b1a0a983a1900b76b1ad9864d15b1496.tar.gz
podman-ce790e61b1a0a983a1900b76b1ad9864d15b1496.tar.bz2
podman-ce790e61b1a0a983a1900b76b1ad9864d15b1496.zip
enable linter for pkg/machine/e2e
Rename all files to _test.go and rename the package to e2e_test. This makes the linter less strict about things like dot imports. Add some unused nolint directives to silence some warnings, these can be used to find untested options so someone could add tests for them. Fixes #14996 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'pkg/machine/e2e/config_stop.go')
-rw-r--r--pkg/machine/e2e/config_stop.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/pkg/machine/e2e/config_stop.go b/pkg/machine/e2e/config_stop.go
deleted file mode 100644
index 04dcfb524..000000000
--- a/pkg/machine/e2e/config_stop.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package e2e
-
-type stopMachine struct {
- /*
- No command line args other than a machine vm name (also not required)
- */
- cmd []string
-}
-
-func (s stopMachine) buildCmd(m *machineTestBuilder) []string {
- cmd := []string{"machine", "stop"}
- if len(m.name) > 0 {
- cmd = append(cmd, m.name)
- }
- return cmd
-}