From 723d0a2bf0bf546a385aff7f850f4175687d0226 Mon Sep 17 00:00:00 2001 From: Vanshika Mohan Bongade <vb525@drexel.edu> Date: Fri, 14 Feb 2025 21:06:08 +0000 Subject: [PATCH] Upload New File --- WEEK-6/bats/student_tests.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 WEEK-6/bats/student_tests.sh diff --git a/WEEK-6/bats/student_tests.sh b/WEEK-6/bats/student_tests.sh new file mode 100644 index 0000000..1241ea9 --- /dev/null +++ b/WEEK-6/bats/student_tests.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bats + +# File: student_tests.sh +# +# Create your unit tests suit in this file + +@test "Example: check ls runs without errors" { + run ./dsh <<EOF +ls +EOF + + # Assertions + [ "$status" -eq 0 ] +} \ No newline at end of file -- GitLab