TIL - Testing Notes

What follows is notes from a class. Incomplete thoughts & code that probably will only make sense to me. Given enough time, even that may be a stretch! Reference at your own risk šŸ˜‚

Slides

Saving this content for reference since I missed the class!

Random Bash Script

Hereā€™s a bash script to make a bunch of folders:

END=30
for ((i=1;i<=END;i++)); do
mkdir "week${i}"
cd "week${i}"
mkdir homework lesson1 lesson2
cd ..
done

Bonus