Sha256: b00bd0915a80c590042865373aad97c21f910cf49607ae21d8a8cbfa19ce2e3f

Contents?: true

Size: 1.88 KB

Versions: 34

Compression:

Stored size: 1.88 KB

Contents

# Copyright (c) 2018 Yegor Bugayenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

require 'minitest/autorun'
require 'tmpdir'
require_relative '../test__helper'
require_relative '../../lib/zold/wallets'
require_relative '../../lib/zold/wallet'
require_relative '../../lib/zold/key'
require_relative '../../lib/zold/id'
require_relative '../../lib/zold/commands/show'

# SHOW test.
# Author:: Yegor Bugayenko (yegor256@gmail.com)
# Copyright:: Copyright (c) 2018 Yegor Bugayenko
# License:: MIT
class TestShow < Minitest::Test
  def test_checks_wallet_balance
    Dir.mktmpdir 'test' do |dir|
      id = Zold::Id.new
      wallets = Zold::Wallets.new(dir)
      wallet = wallets.find(id)
      wallet.init(Zold::Id.new, Zold::Key.new(file: 'fixtures/id_rsa.pub'))
      balance = Zold::Show.new(wallets: wallets, log: $log).run(['show', id.to_s])
      assert_equal(Zold::Amount::ZERO, balance)
    end
  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
zold-0.9.11 test/commands/test_show.rb
zold-0.9.10 test/commands/test_show.rb
zold-0.9.9 test/commands/test_show.rb
zold-0.9.8 test/commands/test_show.rb
zold-0.9.7 test/commands/test_show.rb
zold-0.9.6 test/commands/test_show.rb
zold-0.9.5 test/commands/test_show.rb
zold-0.9.4 test/commands/test_show.rb
zold-0.9.3 test/commands/test_show.rb
zold-0.9.2 test/commands/test_show.rb
zold-0.9.1 test/commands/test_show.rb
zold-0.9 test/commands/test_show.rb
zold-0.8 test/commands/test_show.rb
zold-0.7 test/commands/test_show.rb