Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CS283
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bgm47
CS283
Commits
09dcc55c
Commit
09dcc55c
authored
2 months ago
by
bgm47
Browse files
Options
Downloads
Patches
Plain Diff
update test
parent
98dcc9cf
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
5-ShellP3/bats/student_tests.sh
+20
-1
20 additions, 1 deletion
5-ShellP3/bats/student_tests.sh
with
20 additions
and
1 deletion
5-ShellP3/bats/student_tests.sh
+
20
−
1
View file @
09dcc55c
...
@@ -11,4 +11,23 @@ EOF
...
@@ -11,4 +11,23 @@ EOF
# Assertions
# Assertions
[
"
$status
"
-eq
0
]
[
"
$status
"
-eq
0
]
}
}
\ No newline at end of file
@test
"Piped commands: echo, tr, and rev"
{
run
"./dsh"
<<
EOF
echo "hello world" | tr '[:lower:]' '[:upper:]' | rev
EOF
stripped_output
=
$(
echo
"
$output
"
|
tr
-d
'[:space:]'
)
expected_output
=
"DLROWOLLEHdsh3>dsh3>cmdloopreturned0"
echo
"Captured stdout:"
echo
"Output:
$output
"
echo
"Exit Status:
$status
"
echo
"
${
stripped_output
}
->
${
expected_output
}
"
[
"
$stripped_output
"
=
"
$expected_output
"
]
[
"
$status
"
-eq
0
]
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment