From 955bd44684a367bcaab6acb9f9d89e8592b44fe8 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sun, 6 Nov 2016 10:52:46 +0100 Subject: [PATCH] rename unit tests to match module names --- src/tests/{test_crypto_aes.py => test_trezor.crypto.aes.py} | 0 src/tests/{test_crypto_base58.py => test_trezor.crypto.base58.py} | 0 src/tests/{test_crypto_bip32.py => test_trezor.crypto.bip32.py} | 0 src/tests/{test_crypto_bip39.py => test_trezor.crypto.bip39.py} | 0 ...rypto_curve25519.py => test_trezor.crypto.curve.curve25519.py} | 0 ...test_crypto_ed25519.py => test_trezor.crypto.curve.ed25519.py} | 0 ..._crypto_nist256p1.py => test_trezor.crypto.curve.nist256p1.py} | 0 ..._crypto_secp256k1.py => test_trezor.crypto.curve.secp256k1.py} | 0 ...st_crypto_blake2s.py => test_trezor.crypto.hashlib.blake2s.py} | 0 ...rypto_ripemd160.py => test_trezor.crypto.hashlib.ripemd160.py} | 0 .../{test_crypto_sha1.py => test_trezor.crypto.hashlib.sha1.py} | 0 ...test_crypto_sha256.py => test_trezor.crypto.hashlib.sha256.py} | 0 ..._crypto_sha3_256.py => test_trezor.crypto.hashlib.sha3_256.py} | 0 ..._crypto_sha3_512.py => test_trezor.crypto.hashlib.sha3_512.py} | 0 ...test_crypto_sha512.py => test_trezor.crypto.hashlib.sha512.py} | 0 src/tests/{test_crypto_hmac.py => test_trezor.crypto.hmac.py} | 0 src/tests/{test_crypto_pbkdf2.py => test_trezor.crypto.pbkdf2.py} | 0 src/tests/{test_crypto_random.py => test_trezor.crypto.random.py} | 0 src/tests/{test_wire_codec.py => test_trezor.wire.wire_codec.py} | 0 .../{test_wire_codec_v1.py => test_trezor.wire.wire_codec_v1.py} | 0 20 files changed, 0 insertions(+), 0 deletions(-) rename src/tests/{test_crypto_aes.py => test_trezor.crypto.aes.py} (100%) rename src/tests/{test_crypto_base58.py => test_trezor.crypto.base58.py} (100%) rename src/tests/{test_crypto_bip32.py => test_trezor.crypto.bip32.py} (100%) rename src/tests/{test_crypto_bip39.py => test_trezor.crypto.bip39.py} (100%) rename src/tests/{test_crypto_curve25519.py => test_trezor.crypto.curve.curve25519.py} (100%) rename src/tests/{test_crypto_ed25519.py => test_trezor.crypto.curve.ed25519.py} (100%) rename src/tests/{test_crypto_nist256p1.py => test_trezor.crypto.curve.nist256p1.py} (100%) rename src/tests/{test_crypto_secp256k1.py => test_trezor.crypto.curve.secp256k1.py} (100%) rename src/tests/{test_crypto_blake2s.py => test_trezor.crypto.hashlib.blake2s.py} (100%) rename src/tests/{test_crypto_ripemd160.py => test_trezor.crypto.hashlib.ripemd160.py} (100%) rename src/tests/{test_crypto_sha1.py => test_trezor.crypto.hashlib.sha1.py} (100%) rename src/tests/{test_crypto_sha256.py => test_trezor.crypto.hashlib.sha256.py} (100%) rename src/tests/{test_crypto_sha3_256.py => test_trezor.crypto.hashlib.sha3_256.py} (100%) rename src/tests/{test_crypto_sha3_512.py => test_trezor.crypto.hashlib.sha3_512.py} (100%) rename src/tests/{test_crypto_sha512.py => test_trezor.crypto.hashlib.sha512.py} (100%) rename src/tests/{test_crypto_hmac.py => test_trezor.crypto.hmac.py} (100%) rename src/tests/{test_crypto_pbkdf2.py => test_trezor.crypto.pbkdf2.py} (100%) rename src/tests/{test_crypto_random.py => test_trezor.crypto.random.py} (100%) rename src/tests/{test_wire_codec.py => test_trezor.wire.wire_codec.py} (100%) rename src/tests/{test_wire_codec_v1.py => test_trezor.wire.wire_codec_v1.py} (100%) diff --git a/src/tests/test_crypto_aes.py b/src/tests/test_trezor.crypto.aes.py similarity index 100% rename from src/tests/test_crypto_aes.py rename to src/tests/test_trezor.crypto.aes.py diff --git a/src/tests/test_crypto_base58.py b/src/tests/test_trezor.crypto.base58.py similarity index 100% rename from src/tests/test_crypto_base58.py rename to src/tests/test_trezor.crypto.base58.py diff --git a/src/tests/test_crypto_bip32.py b/src/tests/test_trezor.crypto.bip32.py similarity index 100% rename from src/tests/test_crypto_bip32.py rename to src/tests/test_trezor.crypto.bip32.py diff --git a/src/tests/test_crypto_bip39.py b/src/tests/test_trezor.crypto.bip39.py similarity index 100% rename from src/tests/test_crypto_bip39.py rename to src/tests/test_trezor.crypto.bip39.py diff --git a/src/tests/test_crypto_curve25519.py b/src/tests/test_trezor.crypto.curve.curve25519.py similarity index 100% rename from src/tests/test_crypto_curve25519.py rename to src/tests/test_trezor.crypto.curve.curve25519.py diff --git a/src/tests/test_crypto_ed25519.py b/src/tests/test_trezor.crypto.curve.ed25519.py similarity index 100% rename from src/tests/test_crypto_ed25519.py rename to src/tests/test_trezor.crypto.curve.ed25519.py diff --git a/src/tests/test_crypto_nist256p1.py b/src/tests/test_trezor.crypto.curve.nist256p1.py similarity index 100% rename from src/tests/test_crypto_nist256p1.py rename to src/tests/test_trezor.crypto.curve.nist256p1.py diff --git a/src/tests/test_crypto_secp256k1.py b/src/tests/test_trezor.crypto.curve.secp256k1.py similarity index 100% rename from src/tests/test_crypto_secp256k1.py rename to src/tests/test_trezor.crypto.curve.secp256k1.py diff --git a/src/tests/test_crypto_blake2s.py b/src/tests/test_trezor.crypto.hashlib.blake2s.py similarity index 100% rename from src/tests/test_crypto_blake2s.py rename to src/tests/test_trezor.crypto.hashlib.blake2s.py diff --git a/src/tests/test_crypto_ripemd160.py b/src/tests/test_trezor.crypto.hashlib.ripemd160.py similarity index 100% rename from src/tests/test_crypto_ripemd160.py rename to src/tests/test_trezor.crypto.hashlib.ripemd160.py diff --git a/src/tests/test_crypto_sha1.py b/src/tests/test_trezor.crypto.hashlib.sha1.py similarity index 100% rename from src/tests/test_crypto_sha1.py rename to src/tests/test_trezor.crypto.hashlib.sha1.py diff --git a/src/tests/test_crypto_sha256.py b/src/tests/test_trezor.crypto.hashlib.sha256.py similarity index 100% rename from src/tests/test_crypto_sha256.py rename to src/tests/test_trezor.crypto.hashlib.sha256.py diff --git a/src/tests/test_crypto_sha3_256.py b/src/tests/test_trezor.crypto.hashlib.sha3_256.py similarity index 100% rename from src/tests/test_crypto_sha3_256.py rename to src/tests/test_trezor.crypto.hashlib.sha3_256.py diff --git a/src/tests/test_crypto_sha3_512.py b/src/tests/test_trezor.crypto.hashlib.sha3_512.py similarity index 100% rename from src/tests/test_crypto_sha3_512.py rename to src/tests/test_trezor.crypto.hashlib.sha3_512.py diff --git a/src/tests/test_crypto_sha512.py b/src/tests/test_trezor.crypto.hashlib.sha512.py similarity index 100% rename from src/tests/test_crypto_sha512.py rename to src/tests/test_trezor.crypto.hashlib.sha512.py diff --git a/src/tests/test_crypto_hmac.py b/src/tests/test_trezor.crypto.hmac.py similarity index 100% rename from src/tests/test_crypto_hmac.py rename to src/tests/test_trezor.crypto.hmac.py diff --git a/src/tests/test_crypto_pbkdf2.py b/src/tests/test_trezor.crypto.pbkdf2.py similarity index 100% rename from src/tests/test_crypto_pbkdf2.py rename to src/tests/test_trezor.crypto.pbkdf2.py diff --git a/src/tests/test_crypto_random.py b/src/tests/test_trezor.crypto.random.py similarity index 100% rename from src/tests/test_crypto_random.py rename to src/tests/test_trezor.crypto.random.py diff --git a/src/tests/test_wire_codec.py b/src/tests/test_trezor.wire.wire_codec.py similarity index 100% rename from src/tests/test_wire_codec.py rename to src/tests/test_trezor.wire.wire_codec.py diff --git a/src/tests/test_wire_codec_v1.py b/src/tests/test_trezor.wire.wire_codec_v1.py similarity index 100% rename from src/tests/test_wire_codec_v1.py rename to src/tests/test_trezor.wire.wire_codec_v1.py