minishell/spec/minishell_spec.sh
2025-02-07 15:29:43 +01:00

13 lines
276 B
Bash

It "echos output"
Data
#|hello
#|there
End
When call ./minishell
The output line 1 should eq "hello"
The output line 2 should eq "hello"
The output line 3 should eq "there"
The output line 4 should eq "there"
The output line 5 should be undefined
End