17 lines
282 B
Python
17 lines
282 B
Python
import common
|
|
|
|
|
|
class AlbumTest(common.EtiquetteTest):
|
|
def setUp(self):
|
|
super().setUp()
|
|
|
|
|
|
class AlbumSumsTest(AlbumTest):
|
|
def test_sum_photos(self):
|
|
pass
|
|
|
|
def test_sum_bytes_local(self):
|
|
pass
|
|
|
|
def test_sum_bytes_recursive(self):
|
|
pass
|