mirror of
https://github.com/logos-co/nomos-specs.git
synced 2025-01-10 23:56:31 +00:00
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
|