Negative check: test an invalid condition
This commit is contained in:
parent
22e546ff32
commit
328728c88a
|
@ -57,4 +57,10 @@ func TestIsConsulServer(t *testing.T) {
|
||||||
if parts.Bootstrap {
|
if parts.Bootstrap {
|
||||||
t.Fatalf("unexpected bootstrap")
|
t.Fatalf("unexpected bootstrap")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
delete(m.Tags, "consul")
|
||||||
|
ok, parts = server_details.IsConsulServer(m)
|
||||||
|
if ok {
|
||||||
|
t.Fatalf("unexpected ok server")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue