]> arthur.barton.de Git - bup.git/blobdiff - t/test-command-without-init-fails.sh
tests: move all tests to test/
[bup.git] / t / test-command-without-init-fails.sh
diff --git a/t/test-command-without-init-fails.sh b/t/test-command-without-init-fails.sh
deleted file mode 100755 (executable)
index 32efe2c..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/env bash
-. ./wvtest-bup.sh || exit $?
-
-set -o pipefail
-
-WVSTART 'all'
-
-top="$(WVPASS pwd)" || exit $?
-tmpdir="$(WVPASS wvmktempdir)" || exit $?
-
-export BUP_DIR="$tmpdir/bup"
-
-bup() { "$top/bup" "$@"; }
-
-WVPASS mkdir "$tmpdir/foo"
-
-bup index "$tmpdir/foo" &> /dev/null
-index_rc=$?
-WVPASSEQ "$index_rc" "15"
-
-WVPASS rm -rf "$tmpdir"