mirror of
https://github.com/docker/docs.git
synced 2026-04-01 00:38:52 +07:00
10 lines
180 B
Go
10 lines
180 B
Go
package pkgaction
|
|
|
|
import "testing"
|
|
|
|
func TestActionValue(t *testing.T) {
|
|
if Install.String() != "install" {
|
|
t.Fatal("Expected %q but got %q", "install", Install.String())
|
|
}
|
|
}
|