mirror of
https://github.com/containers/podman.git
synced 2025-12-03 11:49:18 +08:00
* Make sure that all vendored dependencies are in sync with the code and the vendor.conf by running `make vendor` with a follow-up status check of the git tree. * Vendor ginkgo and gomega to include the test dependencies. Signed-off-by: Chris Evic <cevich@redhat.com> Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
20 lines
300 B
Go
20 lines
300 B
Go
package leafnodes
|
|
|
|
import (
|
|
"github.com/onsi/ginkgo/types"
|
|
)
|
|
|
|
type BasicNode interface {
|
|
Type() types.SpecComponentType
|
|
Run() (types.SpecState, types.SpecFailure)
|
|
CodeLocation() types.CodeLocation
|
|
}
|
|
|
|
type SubjectNode interface {
|
|
BasicNode
|
|
|
|
Text() string
|
|
Flag() types.FlagType
|
|
Samples() int
|
|
}
|