mirror of
https://github.com/containers/podman.git
synced 2025-12-09 15:19:35 +08:00
Quadlet - Allow using symlink on the base search paths
Signed-off-by: Ygal Blum <ygal.blum@gmail.com>
This commit is contained in:
@@ -554,7 +554,14 @@ var _ = Describe("quadlet system generator", func() {
|
||||
current := session.ErrorToStringArray()
|
||||
expected := "No files parsed from [/something]"
|
||||
|
||||
Expect(current[0]).To(ContainSubstring(expected))
|
||||
found := false
|
||||
for _, line := range current {
|
||||
if strings.Contains(line, expected) {
|
||||
found = true
|
||||
break
|
||||
}
|
||||
}
|
||||
Expect(found).To(BeTrue())
|
||||
})
|
||||
|
||||
It("Should fail on bad quadlet", func() {
|
||||
|
||||
Reference in New Issue
Block a user