mirror of
https://github.com/malmeloo/FindMy.py.git
synced 2026-04-18 01:53:58 +02:00
12 lines
285 B
Python
12 lines
285 B
Python
import pytest
|
|
|
|
|
|
@pytest.mark.parametrize('execution_number', range(100))
|
|
def test_import(execution_number):
|
|
import findmy
|
|
|
|
kp = findmy.KeyPair.new()
|
|
assert len(kp.private_key_bytes) == 28
|
|
assert len(kp.adv_key_bytes) == 28
|
|
assert len(kp.hashed_adv_key_bytes) == 32
|