diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-01-14 09:53:02 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-01-14 10:51:59 +0100 |
commit | cf1f3191d2be691b482ac86f9476c180f608ddbe (patch) | |
tree | 16b5c74883be69aef8e567bc089b3656b6fb14fa /libpod/container_internal_test.go | |
parent | a1028697465029f3e7b100de843eb7e5e2948246 (diff) | |
download | podman-cf1f3191d2be691b482ac86f9476c180f608ddbe.tar.gz podman-cf1f3191d2be691b482ac86f9476c180f608ddbe.tar.bz2 podman-cf1f3191d2be691b482ac86f9476c180f608ddbe.zip |
make lint: include unit tests
Include the unit tests (i.e., _test.go files) for linting to make the
tests more robust and enforce the linters' coding styles etc.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'libpod/container_internal_test.go')
-rw-r--r-- | libpod/container_internal_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libpod/container_internal_test.go b/libpod/container_internal_test.go index f1e2b70a7..5428504ef 100644 --- a/libpod/container_internal_test.go +++ b/libpod/container_internal_test.go @@ -61,7 +61,8 @@ func TestPostDeleteHooks(t *testing.T) { } stateRegexp := `{"ociVersion":"1\.0\.1-dev","id":"123abc","status":"stopped","bundle":"` + strings.TrimSuffix(os.TempDir(), "/") + `/libpod_test_[0-9]*","annotations":{"a":"b"}}` - for _, path := range []string{statePath, copyPath} { + for _, p := range []string{statePath, copyPath} { + path := p t.Run(path, func(t *testing.T) { content, err := ioutil.ReadFile(path) if err != nil { |