Add default arg to info question type

This commit is contained in:
Rezart Qelibari
2022-02-13 23:14:56 +01:00
parent 302956c7e1
commit da96cc2cf0
4 changed files with 75 additions and 11 deletions

View File

@@ -12,6 +12,17 @@ Describe 'convertQuestionArgsToAskUserArgs'
The status should be success
End
It 'converts info with default arg to info with default arg'
args=()
choices=()
questionArgs='info;default:Mario Kart'
When call convertQuestionArgsToAskUserArgs
The output should eq ''
The variable args should eq '-d Mario Kart info'
The variable choices should eq ''
The status should be success
End
It 'converts password to -p info'
args=() choices=() questionArgs='password'
When call convertQuestionArgsToAskUserArgs