summaryrefslogtreecommitdiff
path: root/test/e2e/libpod_suite_test.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-02-05 15:54:48 -0600
committerAtomic Bot <atomic-devel@projectatomic.io>2018-02-06 15:55:50 +0000
commit1c4bcf3bc76ff70404a327f40bc29b619ed7d7cb (patch)
tree5129063829f8f2a8e56c208ca9a5e8c6ffd2c675 /test/e2e/libpod_suite_test.go
parentbf00c976dd7509b7d84d1fa5254f1ac26fc494e5 (diff)
downloadpodman-1c4bcf3bc76ff70404a327f40bc29b619ed7d7cb.tar.gz
podman-1c4bcf3bc76ff70404a327f40bc29b619ed7d7cb.tar.bz2
podman-1c4bcf3bc76ff70404a327f40bc29b619ed7d7cb.zip
Migrate more tests to ginkgo
Migrate the following to the ginkgo integration tests: * images * import * inspect * logs * run_dns Signed-off-by: baude <bbaude@redhat.com> Closes: #295 Approved by: mheon
Diffstat (limited to 'test/e2e/libpod_suite_test.go')
-rw-r--r--test/e2e/libpod_suite_test.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/e2e/libpod_suite_test.go b/test/e2e/libpod_suite_test.go
index 27848517f..712af7236 100644
--- a/test/e2e/libpod_suite_test.go
+++ b/test/e2e/libpod_suite_test.go
@@ -413,3 +413,14 @@ func StringInSlice(s string, sl []string) bool {
}
return false
}
+
+//LineInOutputStartsWith returns true if a line in a
+// session output starts with the supplied string
+func (s *PodmanSession) LineInOuputStartsWith(term string) bool {
+ for _, i := range s.OutputToStringArray() {
+ if strings.HasPrefix(i, term) {
+ return true
+ }
+ }
+ return false
+}