mirror of
https://github.com/logos-blockchain/logos-blockchain-specs.git
synced 2026-01-05 22:53:11 +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
|