2015-03-20 16:57:39 -07:00
|
|
|
package pkgaction
|
|
|
|
|
|
|
|
|
|
import "testing"
|
|
|
|
|
|
|
|
|
|
func TestActionValue(t *testing.T) {
|
|
|
|
|
if Install.String() != "install" {
|
2015-09-14 22:31:34 -04:00
|
|
|
t.Fatalf("Expected %q but got %q", "install", Install.String())
|
2015-03-20 16:57:39 -07:00
|
|
|
}
|
|
|
|
|
}
|