summaryrefslogtreecommitdiffstats
path: root/store/storetest
diff options
context:
space:
mode:
Diffstat (limited to 'store/storetest')
-rw-r--r--store/storetest/command_store.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/store/storetest/command_store.go b/store/storetest/command_store.go
index 92d981660..ffc575563 100644
--- a/store/storetest/command_store.go
+++ b/store/storetest/command_store.go
@@ -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) {