ipld-eth-server/vendor/github.com/ipfs/go-ipfs/test/sharness/t0025-datastores.sh
2019-12-02 13:24:46 -06:00

17 lines
307 B
Bash
Executable File

#!/usr/bin/env bash
test_description="Test non-standard datastores"
. lib/test-lib.sh
test_expect_success "'ipfs init --profile=badgerds' succeeds" '
BITS="1024" &&
ipfs init --bits="$BITS" --profile=badgerds
'
test_expect_success "'ipfs pin ls' works" '
ipfs pin ls | wc -l | grep 9
'
test_done