1
0
Fork 0
mirror of https://github.com/nishiki/manage-password.git synced 2025-02-20 01:50:04 +00:00

fix: remove output for test_import

This commit is contained in:
Adrien Waksberg 2017-10-03 13:09:27 +02:00
parent 8fddbd01be
commit b0905f18f1

View file

@ -29,15 +29,12 @@ class TestImport < Test::Unit::TestCase
assert_match(I18n.t('form.import.valid'), output)
output = %x(echo #{@password} | mpw list --group Bank --wallet #{format})
puts output
assert_match(%r{http://.*fric\.com.*12345.*Fric money money}, output)
output = %x(echo #{@password} | mpw list --group Cloud --wallet #{format})
puts output
assert_match(%r{ssh://.*fric\.com.*:4333.*username.*bastion}, output)
output = %x(echo #{@password} | mpw list --wallet #{format})
puts output
assert_match(/server\.com.*My little server/, output)
end
end