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

22 lines
463 B
Bash
Executable File

#!/usr/bin/env bash
#
# Copyright (c) 2015 Brian Holder-Chow Lin On
# MIT Licensed; see the LICENSE file in this repository.
#
test_description="Test user-provided config values"
. lib/test-lib.sh
test_init_ipfs
test_expect_success "bootstrap doesn't overwrite user-provided config keys (top-level)" '
ipfs config Foo.Bar baz &&
ipfs bootstrap rm --all &&
echo "baz" >expected &&
ipfs config Foo.Bar >actual &&
test_cmp expected actual
'
test_done