1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Proper JSON handling of strings that could be represented as other types

Addresses #6830

Docker-DCO-1.1-Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com> (github: estesp)
This commit is contained in:
Phil Estes 2014-09-15 19:35:07 -04:00
parent 8b18a2da54
commit 1b0b1ec657
3 changed files with 6 additions and 2 deletions

View file

@ -46,6 +46,10 @@ func TestInspectContainerResponse(t *testing.T) {
t.Fatalf("%s does not exist in reponse for %s version", key, testVersion)
}
}
//Issue #6830: type not properly converted to JSON/back
if _, ok := inspect_json["Path"].(bool); ok {
t.Fatalf("Path of `true` should not be converted to boolean `true` via JSON marshalling")
}
}
deleteAllContainers()