Merge pull request #7872 from obsidiansystems/test-derivation-to-json
`Derivation::toJSON`: fix bug!
This commit is contained in:
commit
5510daf132
|
@ -945,6 +945,7 @@ nlohmann::json Derivation::toJSON(const Store & store) const
|
|||
res["system"] = platform;
|
||||
res["builder"] = builder;
|
||||
res["args"] = args;
|
||||
res["env"] = env;
|
||||
|
||||
return res;
|
||||
}
|
||||
|
|
|
@ -85,6 +85,9 @@ TEST_JSON(Derivation, impure,
|
|||
"bar",
|
||||
"baz"
|
||||
],
|
||||
"env": {
|
||||
"BIG_BAD": "WOLF"
|
||||
},
|
||||
"outputs": {}
|
||||
})",
|
||||
({
|
||||
|
@ -107,6 +110,12 @@ TEST_JSON(Derivation, impure,
|
|||
"bar",
|
||||
"baz",
|
||||
};
|
||||
drv.env = {
|
||||
{
|
||||
"BIG_BAD",
|
||||
"WOLF",
|
||||
},
|
||||
};
|
||||
drv;
|
||||
}))
|
||||
|
||||
|
|
Loading…
Reference in a new issue