10 lines
185 B
Go
10 lines
185 B
Go
package serviceaction
|
|
|
|
import "testing"
|
|
|
|
func TestActionValue(t *testing.T) {
|
|
if Restart.String() != "restart" {
|
|
t.Fatalf("Expected %s but got %s", "install", Restart.String())
|
|
}
|
|
}
|