mirror of
https://github.com/logos-co/nomos-specs.git
synced 2025-01-10 15:46:03 +00:00
9a54d90d14
* 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
18 lines
298 B
Python
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
|