removed dead test

This commit is contained in:
Jeremy Saenz 2013-11-20 17:26:27 -08:00
parent ab6f1b7c3c
commit 806cdc2890

View File

@ -79,21 +79,6 @@ func TestParseMultiString(t *testing.T) {
}
},
}).Run([]string{"run", "-s", "10"})
/*(&cli.App{
Flags: []cli.Flag{
cli.StringFlag{Name: "serve, s"},
},
Action: func(ctx *cli.Context) {
if ctx.String("serve") != "10" {
t.Errorf("main name not set")
}
if ctx.String("s") != "10" {
t.Errorf("short name not set")
}
},
}).Run([]string{"run", "--serve", "10"})
*/
}
func TestParseMultiInt(t *testing.T) {