mirror of
https://github.com/docker/cli.git
synced 2026-01-16 20:22:36 +03:00
14 lines
252 B
Go
14 lines
252 B
Go
package main
|
|
|
|
import (
|
|
"sort"
|
|
"testing"
|
|
)
|
|
|
|
// Tests if the subcommands of docker are sorted
|
|
func TestDockerSubcommandsAreSorted(t *testing.T) {
|
|
if !sort.IsSorted(byName(dockerCommands)) {
|
|
t.Fatal("Docker subcommands are not in sorted order")
|
|
}
|
|
}
|