Sha256: 4e875854d916e91051ff5f69049ceaaa078c6cfc4ff6edd117508c6e9a79d6ef

Contents?: true

Size: 1.92 KB

Versions: 40

Compression:

Stored size: 1.92 KB

Contents

# frozen_string_literal: true

# 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 do |dir|
      id = Zold::Id.new
      wallets = Zold::Wallets.new(dir)
      wallets.find(id) do |wallet|
        wallet.init(Zold::Id.new, Zold::Key.new(file: 'fixtures/id_rsa.pub'))
        balance = Zold::Show.new(wallets: wallets, log: test_log).run(['show', id.to_s])
        assert_equal(Zold::Amount::ZERO, balance)
      end
    end
  end
end

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
zold-0.16.13 test/commands/test_show.rb
zold-0.16.12 test/commands/test_show.rb
zold-0.16.11 test/commands/test_show.rb
zold-0.16.10 test/commands/test_show.rb
zold-0.16.9 test/commands/test_show.rb
zold-0.16.8 test/commands/test_show.rb
zold-0.16.7 test/commands/test_show.rb
zold-0.16.6 test/commands/test_show.rb
zold-0.16.5 test/commands/test_show.rb
zold-0.16.4 test/commands/test_show.rb
zold-0.16.3 test/commands/test_show.rb
zold-0.16.2 test/commands/test_show.rb
zold-0.16.1 test/commands/test_show.rb
zold-0.16.0 test/commands/test_show.rb
zold-0.15.0 test/commands/test_show.rb
zold-0.14.53 test/commands/test_show.rb
zold-0.14.52 test/commands/test_show.rb
zold-0.14.51 test/commands/test_show.rb
zold-0.14.50 test/commands/test_show.rb
zold-0.14.49 test/commands/test_show.rb