minishell/spec/minishell_spec.sh

12 lines
200 B
Bash
Raw Normal View History

2025-02-06 15:13:34 +01:00
It "echos output"
Data
#|hello
#|there
End
When call ./minishell
The output line 1 should eq "hello"
The output line 2 should eq "there"
The output line 3 should be undefined
2025-02-06 15:13:34 +01:00
End