forked from scaleway/scaleway-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core): set can handle all positional args together (scaleway#3722)
Co-authored-by: Jules Castéran <jules.casteran@gmail.com>
- Loading branch information
Showing
5 changed files
with
119 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...nal/core/testdata/test-multi-positional-arg-multi-positional-with-multi-positional.golden
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 | ||
🟩🟩🟩 STDOUT️ 🟩🟩🟩️ | ||
NameIDs.0 pos1 | ||
NameIDs.1 pos2 | ||
NameIDs.2 pos3 | ||
Tag tag1 | ||
🟩🟩🟩 JSON STDOUT 🟩🟩🟩 | ||
{ | ||
"NameIDs": [ | ||
"pos1", | ||
"pos2", | ||
"pos3" | ||
], | ||
"Tag": "tag1" | ||
} |
11 changes: 11 additions & 0 deletions
11
internal/core/testdata/test-multi-positional-arg-multi-positional-with-one-positional.golden
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 | ||
🟩🟩🟩 STDOUT️ 🟩🟩🟩️ | ||
NameIDs.0 pos1 | ||
Tag tag1 | ||
🟩🟩🟩 JSON STDOUT 🟩🟩🟩 | ||
{ | ||
"NameIDs": [ | ||
"pos1" | ||
], | ||
"Tag": "tag1" | ||
} |