You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These all fail (note: the test app has --greedy and -G as "greedy", but that doesn't matter here):
SH echo Override with empty, long greedy
RUN args-test --greedy 1 2 3 --greedy
EXPECT "Override with empty, long
-------- NAMED (1):
greedy
-------- POSITIONAL (0):
"
Should also verify this then:
SH echo Override with empty, short greedy
RUN args-test --G 1 2 3 -G
EXPECT "Override with empty, long
-------- NAMED (1):
G
-------- POSITIONAL (0):
"
And of course the simplest case of empty override:
RUN args-test --thing=1 --thing
EXPECT "Override with empty, long
-------- NAMED (1):
thing
-------- POSITIONAL (0):
"
Non-greedy known ones can't be empty (--take-two takes 2)?
SH echo Override with empty, long (ERROR: insufficient parameters)
RUN args-test --take-two 1 2 3 --take-two
EXPECT "Override with empty, long
-------- NAMED (1):
take-two
-------- POSITIONAL (0):
"
...and:
SH echo Override with empty, short
RUN args-test --G 1 2 3 -G
EXPECT "Override with empty, long
-------- NAMED (1):
G
-------- POSITIONAL (0):
"
The text was updated successfully, but these errors were encountered:
+ Close#8: short aggregates (with params)
+ Fix#57: empty overrides (shorts needed special-casing)
+ RepeatIsError is implemented
+ More tests
+ Some refactoring to support these changes
+ Capitalized most comments & other cosmetics
+ Close#8: short aggregates (with params)
+ Fix#57: empty overrides (shorts needed special-casing)
+ RepeatIsError is implemented
+ More tests
+ Some refactoring to support these changes
+ Capitalized most comments & other cosmetics
+ Close#8: short aggregates (with params)
+ Fix#57: empty overrides (shorts needed special-casing)
+ RepeatIsError is implemented
+ More tests (but had to disable the /? case though for quoting problems
in Space Test, as /? kept matching /a on GitHub :) )
+ Some refactoring to support these changes
+ Capitalized most comments & other cosmetics
These all fail (note: the test app has --greedy and -G as "greedy", but that doesn't matter here):
Should also verify this then:
And of course the simplest case of empty override:
Non-greedy known ones can't be empty (
--take-two
takes 2)?...and:
The text was updated successfully, but these errors were encountered: