nomos-specs/da/test_verifier.py
Daniel Sanchez 9a54d90d14
Da specs main structure (#70)
* Added da encoder pipeline draft

* Remove unnecessary method

* Added verifier module and blob type

* Fill verifier skeleton

* Add comments on implementation, remove unnecessary intermediary method

* Added dispersal skeleton

* Added test modules for dispersal and verifier

* Added test modules for encoder, implemented basic test

* Added missing test cases

* Added missing calls to encode method

* Use single megabyte test in encoder

* Added basic testcases for dispersal

* Added basic testcases for verifier

* Remove duplicated column proofs from encoding schema

* Remove parameters from test functions in encoder

* Extract common types to common module

* Make test pass

* Remove node id dep from mixnet and fix columns access
2024-02-12 15:35:23 +01:00

18 lines
298 B
Python

from unittest import TestCase
from da.verifier import Attestation, DAVerifier
class TestVerifier(TestCase):
def test_verify_column(self):
pass
def test_verify_chunk(self):
pass
def test_build_attestation(self):
pass
def test_verify(self):
pass