Skip to content

Commit

Permalink
args_test: add TestArgs_Nil
Browse files Browse the repository at this point in the history
  • Loading branch information
umarcor committed Nov 16, 2021
1 parent 9fe2378 commit fcfd90e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions args_test.go
Expand Up @@ -70,6 +70,13 @@ func TestArgs_No(t *testing.T) {
"Valid | Valid": {"unknown", NoArgs, true, []string{"one"}},
})
}
func TestArgs_Nil(t *testing.T) {
testArgs(t, map[string]argsTestcase{
" | Arb": {"", nil, false, []string{"a", "b"}},
"Valid | Valid": {"", nil, true, []string{"one", "two"}},
"Valid | Invalid": {"invalid", nil, true, []string{"a"}},
})
}
func TestArgs_Arbitrary(t *testing.T) {
testArgs(t, map[string]argsTestcase{
" | Arb": {"", ArbitraryArgs, false, []string{"a", "b"}},
Expand Down

0 comments on commit fcfd90e

Please sign in to comment.