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 Dec 8, 2021
1 parent a2f84c8 commit 6675f2a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions args_test.go
Expand Up @@ -71,6 +71,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 6675f2a

Please sign in to comment.