mirror of
https://github.com/logos-blockchain/logos-blockchain-specs.git
synced 2026-01-07 15:43:07 +00:00
21 lines
412 B
Python
21 lines
412 B
Python
|
|
from unittest import TestCase
|
||
|
|
from da.dispersal import Dispersal, DABlob, EncodedData
|
||
|
|
|
||
|
|
|
||
|
|
class TestDispersal(TestCase):
|
||
|
|
|
||
|
|
def test_build_certificate_insufficient_attestations(self):
|
||
|
|
pass
|
||
|
|
|
||
|
|
def test_build_certificate_enough_attestations(self):
|
||
|
|
pass
|
||
|
|
|
||
|
|
def test_prepare_data(self):
|
||
|
|
pass
|
||
|
|
|
||
|
|
def test_verify_attestation(self):
|
||
|
|
pass
|
||
|
|
|
||
|
|
def test_disperse(self):
|
||
|
|
pass
|