mirror of
https://github.com/weaveworks/scope.git
synced 2026-05-20 08:03:15 +00:00
Upgraded from 99c19923, branch release-3.0. This required fetching or upgrading the following: * k8s.io/api to kubernetes-1.9.1 * k8s.io/apimachinery to kubernetes-1.9.1 * github.com/juju/ratelimit to 1.0.1 * github.com/spf13/pflag to 4c012f6d Also, update Scope's imports/function calls to be compatible with the new client.
48 lines
983 B
Go
48 lines
983 B
Go
package leafnodes
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/onsi/ginkgo/internal/failer"
|
|
"github.com/onsi/ginkgo/types"
|
|
)
|
|
|
|
type ItNode struct {
|
|
runner *runner
|
|
|
|
flag types.FlagType
|
|
text string
|
|
}
|
|
|
|
func NewItNode(text string, body interface{}, flag types.FlagType, codeLocation types.CodeLocation, timeout time.Duration, failer *failer.Failer, componentIndex int) *ItNode {
|
|
return &ItNode{
|
|
runner: newRunner(body, codeLocation, timeout, failer, types.SpecComponentTypeIt, componentIndex),
|
|
flag: flag,
|
|
text: text,
|
|
}
|
|
}
|
|
|
|
func (node *ItNode) Run() (outcome types.SpecState, failure types.SpecFailure) {
|
|
return node.runner.run()
|
|
}
|
|
|
|
func (node *ItNode) Type() types.SpecComponentType {
|
|
return types.SpecComponentTypeIt
|
|
}
|
|
|
|
func (node *ItNode) Text() string {
|
|
return node.text
|
|
}
|
|
|
|
func (node *ItNode) Flag() types.FlagType {
|
|
return node.flag
|
|
}
|
|
|
|
func (node *ItNode) CodeLocation() types.CodeLocation {
|
|
return node.runner.codeLocation
|
|
}
|
|
|
|
func (node *ItNode) Samples() int {
|
|
return 1
|
|
}
|