summaryrefslogtreecommitdiff
path: root/test/e2e/inspect_test.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2019-03-06 10:29:11 -0600
committerbaude <bbaude@redhat.com>2019-03-08 13:28:33 -0600
commitd5546008ab00d2a192eff4ad93e53e1f24e93e4c (patch)
treeb3c6fe100edd84e9a199c016498b871bfe94bff7 /test/e2e/inspect_test.go
parentbe6ad02049780027d0c2e1506d9c6bb56d8abd26 (diff)
downloadpodman-d5546008ab00d2a192eff4ad93e53e1f24e93e4c.tar.gz
podman-d5546008ab00d2a192eff4ad93e53e1f24e93e4c.tar.bz2
podman-d5546008ab00d2a192eff4ad93e53e1f24e93e4c.zip
ginkgo status improvements
a series of improvements to our ginkgo test framework so we can get better ideas of whats going on when run in CI Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'test/e2e/inspect_test.go')
-rw-r--r--test/e2e/inspect_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/e2e/inspect_test.go b/test/e2e/inspect_test.go
index e5c471bf9..ebe610e6a 100644
--- a/test/e2e/inspect_test.go
+++ b/test/e2e/inspect_test.go
@@ -1,7 +1,6 @@
package integration
import (
- "fmt"
"os"
"strings"
@@ -23,14 +22,15 @@ var _ = Describe("Podman inspect", func() {
os.Exit(1)
}
podmanTest = PodmanTestCreate(tempdir)
+ podmanTest.Setup()
podmanTest.RestoreAllArtifacts()
})
AfterEach(func() {
podmanTest.Cleanup()
f := CurrentGinkgoTestDescription()
- timedResult := fmt.Sprintf("Test: %s completed in %f seconds", f.TestText, f.Duration.Seconds())
- GinkgoWriter.Write([]byte(timedResult))
+ processTestResult(f)
+
})
It("podman inspect alpine image", func() {
@@ -57,7 +57,7 @@ var _ = Describe("Podman inspect", func() {
result := podmanTest.Podman([]string{"images", "-q", "--no-trunc", ALPINE})
result.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))
- Expect(strings.Trim(result.OutputToString(), "sha256:")).To(Equal(session.OutputToString()))
+ Expect(strings.Contains(result.OutputToString(), session.OutputToString()))
})
It("podman inspect specified type", func() {