Closed superxcgm closed 3 years ago
Process
User can use quote " to indicate single arg that contains space .
"
Given: User type echo "hello world" When: Press Enter Then: Display hello world without quote syntax.
echo "hello world"
hello world
Given: User type echo 'hello world' When: Press Enter Then: Display hello world without quote syntax.
echo 'hello world'
Given: User type echo "hello world" 'hi ni' When: Press Enter Then: Display hello world hi ni without quote syntax.
echo "hello world" 'hi ni'
hello world hi ni
Given: User type echo hello world When: Press Enter Then: Display hello world without quote syntax.
echo hello world
Epic
Process
Description
User can use quote
.
"
to indicate single arg that contains spaceAC
Given: User type
echo "hello world"
When: Press Enter Then: Displayhello world
without quote syntax.Given: User type
echo 'hello world'
When: Press Enter Then: Displayhello world
without quote syntax.Given: User type
echo "hello world" 'hi ni'
When: Press Enter Then: Displayhello world hi ni
without quote syntax.Given: User type
echo hello world
When: Press Enter Then: Displayhello world
without quote syntax.