diff --git a/WEEK-6/bats/student_tests.sh b/WEEK-6/bats/student_tests.sh
new file mode 100644
index 0000000000000000000000000000000000000000..1241ea9cfc3db5e7d9276cc665f87f03a2d0c727
--- /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