kindle manager
This commit is contained in:
18
test_kman.py
18
test_kman.py
@@ -1,11 +1,19 @@
|
||||
|
||||
import unittest2
|
||||
#########################################################
|
||||
## @file : test_kman.py
|
||||
## @desc : unit test for kindle management
|
||||
## @create : 2020/05/26
|
||||
## @author : Chengan
|
||||
## @email : douboer@gmail.com
|
||||
#########################################################
|
||||
|
||||
import unittest
|
||||
|
||||
from collections import defaultdict
|
||||
|
||||
from kman import *
|
||||
|
||||
class TestKman(unittest2.TestCase):
|
||||
class TestKman(unittest.TestCase):
|
||||
# initial
|
||||
def setUp(self):
|
||||
LOG2FILE = 1
|
||||
@@ -213,17 +221,17 @@ class TestKman(unittest2.TestCase):
|
||||
def test_json2dict(self):
|
||||
pass
|
||||
def test_import_clips(self):
|
||||
pass
|
||||
pass
|
||||
"""
|
||||
|
||||
# clean
|
||||
def tearDown(self):
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
"""
|
||||
suite = unittest.TestSuite ()
|
||||
suite.addTest(TestKman('test_parse_section'))
|
||||
suite.addTest(TestKman('test_parse_section'))
|
||||
suite.addTest(TestKman('test_format_time'))
|
||||
suite.addTest(TestKman('test_format_data'))
|
||||
|
||||
Reference in New Issue
Block a user