aboutsummaryrefslogtreecommitdiff
path: root/tests/include.sh
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2019-10-08 21:59:31 -0400
committerLoic Guegan <manzerbredes@mailbox.org>2019-10-08 21:59:31 -0400
commit5ca2e63ea66095fbe64cdc441f6eec663fb28bd4 (patch)
tree52788dca42469677fdde10d70391db2ff07aa9e5 /tests/include.sh
parent6ba370ea542c6d3ca06cabcf0d3295a2f5ec18b4 (diff)
Add simple integration test framework
Diffstat (limited to 'tests/include.sh')
-rw-r--r--tests/include.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/include.sh b/tests/include.sh
new file mode 100644
index 0000000..773dd82
--- /dev/null
+++ b/tests/include.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+wai=$(dirname $(readlink -f $0))
+exec=${wai}/../src/i3-colors.py
+data=${wai}/data
+
+load() {
+ tmp=$(mktemp)
+ cp ${1} ${tmp}
+ echo ${tmp}
+}