From 4a2f5e2183c42562bf5f766c6ed01da3880dc10c Mon Sep 17 00:00:00 2001 From: Nitroretro Date: Sat, 21 Dec 2019 04:16:40 +0200 Subject: Test for the directory structure Ensure that calcurse uses the right data and configuration directories depending on the conditions. Helped-by: Lars Henriksen Signed-off-by: Lukas Fleischer --- test/io-004.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 test/io-004.sh (limited to 'test/io-004.sh') diff --git a/test/io-004.sh b/test/io-004.sh new file mode 100755 index 0000000..cae71b3 --- /dev/null +++ b/test/io-004.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +. "${TEST_INIT:-./test-init.sh}" +home=$(mktemp -d) +data=$(mktemp -d) +conf=$(mktemp -d) + +HOME="$home" XDG_DATA_HOME="$data" XDG_CONFIG_HOME="$conf" "$CALCURSE" -a +[ -f "$data/calcurse/apts" ] && [ -f "$conf/calcurse/conf" ] && failed=0 || failed=1 + +rm -rf "$home" "$data" "$conf" +exit "$failed" -- cgit v1.2.3-54-g00ecf