Sha256: 60b93a23d89cd869d2259d5d1f78b78499e49fa78342bb60b3018c10d59848ad
Contents?: true
Size: 568 Bytes
Versions: 1
Compression:
Stored size: 568 Bytes
Contents
require 'spec_helper' describe RubyBitcoinWallet do subject { RubyBitcoinWallet.new } describe '#process' do let(:input) { 'My input.' } let(:output) { subject.process(input) } it 'creates private and public keys' do # expect(output.downcase).to eq output end it 'creates address' do # expect(output).to match /so grandmom./i # expect(output).to match /such sweater./i # expect(output).to match /very christmas./i end it 'returns error message' do # expect(output).to end_with 'wow.' end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby_bitcoin_wallet-1.0.0 | spec/ruby_bitcoin_wallet_spec.rb |