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
|