From e5c22aaf01484e7fa5926952bbcacd56228dbb64 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Tue, 28 May 2013 19:33:44 -0600 Subject: librechroot: fix typos, add unit test --- test/librechroot-test.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 test/librechroot-test.sh (limited to 'test/librechroot-test.sh') diff --git a/test/librechroot-test.sh b/test/librechroot-test.sh new file mode 100644 index 0000000..d8f7299 --- /dev/null +++ b/test/librechroot-test.sh @@ -0,0 +1,17 @@ +#!/usr/bin/env roundup + +describe librechroot + +before() { + tmpdir=$(mktemp -d --tmpdir test-librechroot.XXXXXXXXXXXX) + mkdir -p "$XDG_CONFIG_HOME"/libretools + echo "CHROOTDIR='$tmpdir'" > "$XDG_CONFIG_HOME"/libretools/chroot.conf +} + +after() { + rm -rf -- "$tmpdir" "$XDG_CONFIG_HOME" +} + +it_creates_repo_for_new_chroots() { + sudo librechroot run test -r /repo/repo.db +} -- cgit v1.2.2