(t *testing.T)
| 296 | } |
| 297 | |
| 298 | func TestValidateIsolation(t *testing.T) { |
| 299 | config := dict{ |
| 300 | "version": "3.5", |
| 301 | "services": dict{ |
| 302 | "foo": dict{ |
| 303 | "image": "busybox", |
| 304 | "isolation": "some-isolation-value", |
| 305 | }, |
| 306 | }, |
| 307 | } |
| 308 | assert.NilError(t, Validate(config, "3.5")) |
| 309 | } |
| 310 | |
| 311 | func TestValidateRollbackConfig(t *testing.T) { |
| 312 | config := dict{ |
nothing calls this directly
no test coverage detected
searching dependent graphs…