forked from cerc-io/ipld-eth-server
22 lines
463 B
Bash
Executable File
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
|