mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #33557 from AkihiroSuda/test-no-unset
builder: add a test for `ENV name` (without `=value`)
This commit is contained in:
commit
d2c6e78371
1 changed files with 8 additions and 0 deletions
|
@ -64,3 +64,11 @@ func TestNodeFromLabels(t *testing.T) {
|
|||
assert.Equal(t, expected, node)
|
||||
|
||||
}
|
||||
|
||||
func TestParseNameValWithoutVal(t *testing.T) {
|
||||
directive := Directive{}
|
||||
// In Config.Env, a variable without `=` is removed from the environment. (#31634)
|
||||
// However, in Dockerfile, we don't allow "unsetting" an environment variable. (#11922)
|
||||
_, err := parseNameVal("foo", "ENV", &directive)
|
||||
assert.Error(t, err, "ENV must have two arguments")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue