Ethan Dalool
b3da21bf33
Comment and sql linewrapping; move Add Tag box to top of ul instead of bottom to stay in view better
35 lines
446 B
Python
35 lines
446 B
Python
import unittest
|
|
import random
|
|
|
|
class EtiquetteTest(unittest.TestCase):
|
|
def setUp(self):
|
|
self.P = phototagger.PhotoDB(':memory:')
|
|
|
|
class AlbumTest(EtiquetteTest):
|
|
pass
|
|
|
|
|
|
class BookmarkTest(EtiquetteTest):
|
|
pass
|
|
|
|
|
|
class PhotoTest(EtiquetteTest):
|
|
pass
|
|
|
|
|
|
class PhotoDBTest(EtiquetteTest):
|
|
pass
|
|
|
|
|
|
class SearchTest(EtiquetteTest):
|
|
pass
|
|
|
|
|
|
class TagTest(EtiquetteTest):
|
|
pass
|
|
|
|
|
|
class UserTest(EtiquetteTest):
|
|
pass
|
|
|
|
|