Facebook
From Funky Kitten, 5 Years ago, written in Python.
Embed
Download Paste or View Raw
Hits: 223
  1. Feature: Basic Blockchain tests # blockchan.feature:1
  2.  
  3.   Scenario: Create new wallet                     # blockchan.feature:3
  4.     Given I am connected to Blockchain Wallet API # steps/BlockchainTests.py:27 0.003s
  5.     When I create new wallets                     # steps/BlockchainTests.py:32 1.946s
  6.     Then New wallets are created                  # steps/BlockchainTests.py:47 1.245s
  7.  
  8.   Scenario: Enable HD for wallet                  # blockchan.feature:8
  9.     Given I am connected to Blockchain Wallet API # steps/BlockchainTests.py:27 0.005s
  10.     When I enable HD for wallets                  # steps/BlockchainTests.py:56 11.906s
  11.     Then Wallets have enabled HD                  # steps/BlockchainTests.py:71 12.420s
  12.  
  13.   Scenario: Check the balance of the wallet       # blockchan.feature:13
  14.     Given I am connected to Blockchain Wallet API # steps/BlockchainTests.py:27 0.006s
  15.     When I check balance of account               # steps/BlockchainTests.py:80 3.222s
  16.     Then Account balance is returned              # steps/BlockchainTests.py:105 5.105s
  17.     And Account balance is printed                # steps/BlockchainTests.py:114
  18. [BALANCE_1] 0
  19. [BALANCE_2] 0
  20. [BALANCE_3] 0
  21. [BALANCE_4] 0
  22.     And Account balance is printed                # steps/BlockchainTests.py:114 2.914s
  23.  
  24.   Scenario: Perform outgoing payment                        # blockchan.feature:19
  25.     Given I am connected to Blockchain Wallet API           # steps/BlockchainTests.py:27 0.007s
  26.     When I perform outgoing payment                         # steps/BlockchainTests.py:124 13.256s
  27.     Then Amount of bitcoins is transferred between accounts # steps/BlockchainTests.py:140
  28. None
  29.     Then Amount of bitcoins is transferred between accounts # steps/BlockchainTests.py:140 2.913s
  30.