t0500-issues-and-regressions-offline.sh 293 Bytes
Newer Older
1 2
#!/bin/sh

3
test_description="Tests for various fixed issues and regressions."
4 5 6 7 8 9 10

. lib/test-lib.sh

test_init_ipfs

# Tests go here

11 12 13 14 15 16
test_expect_success "ipfs init with occupied input works - #2748" '
	export IPFS_PATH="ipfs_path"
	echo "" | time-out ipfs init &&
	rm -rf ipfs_path
'

17
test_done