mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
Fixed issues related to network subcommand tests - "network" in exempted list of short help check - Condition for exact test modified to meet experimental commands - Sorting of commands done in flags_experimental Signed-off-by: Kunal Kushwaha <kunal.kushwaha@gmail.com>
13 lines
246 B
Go
13 lines
246 B
Go
// +build experimental
|
|
|
|
package main
|
|
|
|
import "sort"
|
|
|
|
func init() {
|
|
dockerCommands = append(dockerCommands, command{"network", "Network management"})
|
|
|
|
//Sorting logic required here to pass Command Sort Test.
|
|
sort.Sort(byName(dockerCommands))
|
|
}
|