mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-01 18:20:02 +00:00
* Commit of new etcd snapshot integration tests. * Updated integration github action to not run on doc changes. * Update Drone runner to only run unit tests Signed-off-by: dereknola <derek.nola@suse.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
|
|
}
|