mirror of
https://github.com/containers/podman.git
synced 2025-08-02 09:12:36 +08:00
Ginkgo: use HaveField() for better error checking
This is a very late followup to my ginkgo-improving work of 2021. It has been stuck since December because it requires gomega 1.17, which we've just enabled. This commit is simply a copy-paste of a command I saved in my TODO list many months ago: sed -i -e 's/Expect(\([^ ]\+\)\.\([a-zA-Z0-9]\+\))\.To(Equal(/Expect(\1).To(HaveField(\"\2\", /' test/e2e/*_test.go Signed-off-by: Ed Santiago <santiago@redhat.com>
This commit is contained in:
@ -92,7 +92,7 @@ var _ = Describe("Podman commit", func() {
|
||||
check := podmanTest.Podman([]string{"inspect", "foobar.com/test1-image:latest"})
|
||||
check.WaitWithDefaultTimeout()
|
||||
data := check.InspectImageJSON()
|
||||
Expect(data[0].Comment).To(Equal("testing-commit"))
|
||||
Expect(data[0]).To(HaveField("Comment", "testing-commit"))
|
||||
})
|
||||
|
||||
It("podman commit container with author", func() {
|
||||
@ -107,7 +107,7 @@ var _ = Describe("Podman commit", func() {
|
||||
check := podmanTest.Podman([]string{"inspect", "foobar.com/test1-image:latest"})
|
||||
check.WaitWithDefaultTimeout()
|
||||
data := check.InspectImageJSON()
|
||||
Expect(data[0].Author).To(Equal("snoopy"))
|
||||
Expect(data[0]).To(HaveField("Author", "snoopy"))
|
||||
})
|
||||
|
||||
It("podman commit container with change flag", func() {
|
||||
@ -293,7 +293,7 @@ var _ = Describe("Podman commit", func() {
|
||||
check := podmanTest.Podman([]string{"inspect", "foobar.com/test1-image:latest"})
|
||||
check.WaitWithDefaultTimeout()
|
||||
data := check.InspectImageJSON()
|
||||
Expect(data[0].ID).To(Equal(string(id)))
|
||||
Expect(data[0]).To(HaveField("ID", string(id)))
|
||||
})
|
||||
|
||||
It("podman commit should not commit secret", func() {
|
||||
|
Reference in New Issue
Block a user