remove wallets path

This commit is contained in:
Adrien Waksberg 2018-01-10 22:07:42 +01:00
parent 7597a8daf2
commit 2328e4eff7
7 changed files with 4 additions and 101 deletions

View file

@ -160,22 +160,6 @@ class TestConfig < Test::Unit::TestCase
output = %x(mpw wallet)
assert_match('| default', output)
output = %x(mpw wallet --path '.')
assert_match(I18n.t('form.set_wallet_path.valid'), output)
output = %x(mpw config)
assert_match(%r{path_wallet_default.+\| #{Dir.pwd}/default.mpw}, output)
assert(File.exist?("#{Dir.pwd}/default.mpw"))
output = %x(mpw wallet)
assert_match('default', output)
output = %x(mpw wallet --default-path)
assert_match(I18n.t('form.set_wallet_path.valid'), output)
output = %x(mpw config)
assert_no_match(/path_wallet_default/, output)
end
def test_08_setup_config