Add command validation on update (#7742)

Этот коммит содержится в:
Joram Wilander
2017-10-30 13:14:17 -04:00
коммит произвёл Chris
родитель 3cbacb6858
Коммит 443a880fbd
2 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@@ -221,6 +221,12 @@ func testCommandStoreUpdate(t *testing.T, ss store.Store) {
if r2 := <-ss.Command().Update(o1); r2.Err != nil {
t.Fatal(r2.Err)
}
o1.URL = "junk"
if r2 := <-ss.Command().Update(o1); r2.Err == nil {
t.Fatal("should have failed - bad URL")
}
}
func testCommandCount(t *testing.T, ss store.Store) {