From 57da31d8ce8317ec16a98271396cc25af615e4ec Mon Sep 17 00:00:00 2001 From: inference Date: Sun, 12 May 2024 00:47:43 +0000 Subject: [PATCH] Add test case "CSS" This commit adds a test case to test for the existence of the website's CSS in the correct locations. --- test/css.sh | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 test/css.sh diff --git a/test/css.sh b/test/css.sh new file mode 100755 index 0000000..61c6acf --- /dev/null +++ b/test/css.sh @@ -0,0 +1,31 @@ +#!/bin/zsh + + +# Inferencium - Website - Test - CSS +# Copyright 2024 Jake Winters + +# Version: 0.1.0 +# SPDX-License-Identifier: BSD-3-Clause + + +# Location +root=".." # Website root directory + +# Formatting +bold="\033[1m" # Bold +ok="\033[0;32;1mOK\033[0m" # Green + Bold +fail="\033[0;31;1mFAIL\033[0m" # Red + Bold +nof="\033[0m" # None + + +# Check for existence of CSS +echo "${bold}Checking for existence of CSS...${nof}" + +echo "" +echo "${bold}Root${nof}" + +if [ -f $root/main.css ]; then + echo "main.css ${ok}" +else + echo "main.css ${fail}" +fi