Documentation ¶
Index ¶
- func Case(description string, parameters ...interface{}) tableEntry
- func CaseTable(description string, itBody interface{}, entries ...tableEntry) bool
- func FCase(description string, parameters ...interface{}) tableEntry
- func FCaseTable(description string, itBody interface{}, entries ...tableEntry) bool
- func PCase(description string, parameters ...interface{}) tableEntry
- func PCaseTable(description string, itBody interface{}, entries ...tableEntry) bool
- func WaitFor(geths []container.Ethereum, ...)
- func XCase(description string, parameters ...interface{}) tableEntry
- func XCaseTable(description string, itBody interface{}, entries ...tableEntry) bool
- type ChartInstaller
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Case ¶
func Case(description string, parameters ...interface{}) tableEntry
Entry constructs a tableEntry.
The first argument is a required description (this becomes the content of the generated Ginkgo `It`). Subsequent parameters are saved off and sent to the callback passed in to `DescribeTable`.
Each Entry ends up generating an individual Ginkgo It.
func FCase ¶
func FCase(description string, parameters ...interface{}) tableEntry
You can focus a particular entry with FEntry. This is equivalent to FIt.
func FCaseTable ¶
You can focus a table with `FCaseTable`.
func PCase ¶
func PCase(description string, parameters ...interface{}) tableEntry
You can mark a particular entry as pending with PEntry. This is equivalent to PIt.
func PCaseTable ¶
You can mark a table as pending with `PCaseTable`.
func XCase ¶
func XCase(description string, parameters ...interface{}) tableEntry
You can mark a particular entry as pending with XEntry. This is equivalent to XIt.
func XCaseTable ¶
You can mark a table as pending with `XCaseTable`.