Added blank alias example

This commit is contained in:
Mike Farah 2021-05-16 14:18:18 +10:00
parent 0b71a40797
commit bc70c1fb16
2 changed files with 24 additions and 0 deletions

View File

@ -169,6 +169,22 @@ b: &meow purr
a: *meow a: *meow
``` ```
## Set alias to blank does nothing
Given a sample.yml file of:
```yaml
b: &meow purr
a: cat
```
then
```bash
yq eval '.a alias = ""' sample.yml
```
will output
```yaml
b: &meow purr
a: cat
```
## Set alias relatively using assign-update ## Set alias relatively using assign-update
Given a sample.yml file of: Given a sample.yml file of:
```yaml ```yaml

View File

@ -90,6 +90,14 @@ var anchorOperatorScenarios = []expressionScenario{
"D0, P[], (doc)::{b: &meow purr, a: *meow}\n", "D0, P[], (doc)::{b: &meow purr, a: *meow}\n",
}, },
}, },
{
description: "Set alias to blank does nothing",
document: `{b: &meow purr, a: cat}`,
expression: `.a alias = ""`,
expected: []string{
"D0, P[], (doc)::{b: &meow purr, a: cat}\n",
},
},
{ {
skipDoc: true, skipDoc: true,
document: `{b: &meow purr, a: cat}`, document: `{b: &meow purr, a: cat}`,