2017-07-14 10:14:10 +00:00
|
|
|
#! /usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim:fenc=utf-8
|
|
|
|
#
|
|
|
|
# Copyright © 2017 Óscar García Amor <ogarcia@connectical.com>
|
|
|
|
#
|
|
|
|
# Distributed under terms of the GNU GPLv3 license.
|
|
|
|
|
2017-07-14 13:23:44 +00:00
|
|
|
from .test_api_user import ApiUserTestCase
|
|
|
|
#from .test_folder_manager import FolderManagerTestCase
|
|
|
|
#from .test_user_manager import UserManagerTestCase
|
2017-07-14 10:14:10 +00:00
|
|
|
|
2017-07-14 13:23:44 +00:00
|
|
|
#import unittest
|
2017-07-14 10:14:10 +00:00
|
|
|
|
2017-07-14 13:23:44 +00:00
|
|
|
#def suite():
|
|
|
|
# suite = unittest.TestSuite()
|
|
|
|
# suite.addTest(ApiUserTestCase())
|
|
|
|
#suite.addTest(FolderManagerTestCase())
|
|
|
|
#suite.addTest(UserManagerTestCase())
|
|
|
|
# return suite
|