1
0
mirror of https://github.com/Luzifer/duplicity-backup.git synced 2024-09-20 08:52:54 +00:00
duplicity-backup/vendor/github.com/onsi/ginkgo/internal/leafnodes/interfaces.go
2016-05-22 15:04:37 +02:00

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
}