From ffe7fcf1243636f82710303b6c43006204a06a75 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Sat, 25 Apr 2020 08:44:36 -0400 Subject: [PATCH] refactored wallet unit tests, moved most things to blockchain --- tests/unit/{wallet => blockchain}/test_bcd_data_stream.py | 0 tests/unit/{wallet => blockchain}/test_claim_proofs.py | 0 tests/unit/{wallet => blockchain}/test_dewies.py | 0 tests/unit/{wallet => blockchain}/test_headers.py | 0 tests/unit/{wallet => blockchain}/test_script.py | 0 tests/unit/{wallet => blockchain}/test_transaction.py | 0 tests/unit/{wallet => blockchain}/test_utils.py | 0 tests/unit/{wallet => crypto}/test_bip32.py | 0 tests/unit/{wallet => crypto}/test_hash.py | 0 tests/unit/{wallet => schema}/test_schema_signing.py | 0 .../test_stream_controller.py => test_event_controller.py} | 0 11 files changed, 0 insertions(+), 0 deletions(-) rename tests/unit/{wallet => blockchain}/test_bcd_data_stream.py (100%) rename tests/unit/{wallet => blockchain}/test_claim_proofs.py (100%) rename tests/unit/{wallet => blockchain}/test_dewies.py (100%) rename tests/unit/{wallet => blockchain}/test_headers.py (100%) rename tests/unit/{wallet => blockchain}/test_script.py (100%) rename tests/unit/{wallet => blockchain}/test_transaction.py (100%) rename tests/unit/{wallet => blockchain}/test_utils.py (100%) rename tests/unit/{wallet => crypto}/test_bip32.py (100%) rename tests/unit/{wallet => crypto}/test_hash.py (100%) rename tests/unit/{wallet => schema}/test_schema_signing.py (100%) rename tests/unit/{wallet/test_stream_controller.py => test_event_controller.py} (100%) diff --git a/tests/unit/wallet/test_bcd_data_stream.py b/tests/unit/blockchain/test_bcd_data_stream.py similarity index 100% rename from tests/unit/wallet/test_bcd_data_stream.py rename to tests/unit/blockchain/test_bcd_data_stream.py diff --git a/tests/unit/wallet/test_claim_proofs.py b/tests/unit/blockchain/test_claim_proofs.py similarity index 100% rename from tests/unit/wallet/test_claim_proofs.py rename to tests/unit/blockchain/test_claim_proofs.py diff --git a/tests/unit/wallet/test_dewies.py b/tests/unit/blockchain/test_dewies.py similarity index 100% rename from tests/unit/wallet/test_dewies.py rename to tests/unit/blockchain/test_dewies.py diff --git a/tests/unit/wallet/test_headers.py b/tests/unit/blockchain/test_headers.py similarity index 100% rename from tests/unit/wallet/test_headers.py rename to tests/unit/blockchain/test_headers.py diff --git a/tests/unit/wallet/test_script.py b/tests/unit/blockchain/test_script.py similarity index 100% rename from tests/unit/wallet/test_script.py rename to tests/unit/blockchain/test_script.py diff --git a/tests/unit/wallet/test_transaction.py b/tests/unit/blockchain/test_transaction.py similarity index 100% rename from tests/unit/wallet/test_transaction.py rename to tests/unit/blockchain/test_transaction.py diff --git a/tests/unit/wallet/test_utils.py b/tests/unit/blockchain/test_utils.py similarity index 100% rename from tests/unit/wallet/test_utils.py rename to tests/unit/blockchain/test_utils.py diff --git a/tests/unit/wallet/test_bip32.py b/tests/unit/crypto/test_bip32.py similarity index 100% rename from tests/unit/wallet/test_bip32.py rename to tests/unit/crypto/test_bip32.py diff --git a/tests/unit/wallet/test_hash.py b/tests/unit/crypto/test_hash.py similarity index 100% rename from tests/unit/wallet/test_hash.py rename to tests/unit/crypto/test_hash.py diff --git a/tests/unit/wallet/test_schema_signing.py b/tests/unit/schema/test_schema_signing.py similarity index 100% rename from tests/unit/wallet/test_schema_signing.py rename to tests/unit/schema/test_schema_signing.py diff --git a/tests/unit/wallet/test_stream_controller.py b/tests/unit/test_event_controller.py similarity index 100% rename from tests/unit/wallet/test_stream_controller.py rename to tests/unit/test_event_controller.py