Files
noiseprotocol/tests/test_vectors.py
2017-08-06 21:32:30 +02:00

18 lines
290 B
Python

import glob
import json
import os
import pytest
VECTORS = glob.glob(os.path.join(os.path.dirname(__file__), 'vectors/*.json'))
@pytest.fixture(params=VECTORS)
def vector(request):
with open(request.param) as f:
yield json.load(f)
def test_vector(vector):
assert False