2017-10-28 09:16:44 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim:fenc=utf-8
|
|
|
|
#
|
|
|
|
# This file is part of Supysonic.
|
|
|
|
# Supysonic is a Python implementation of the Subsonic server API.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2017 Alban 'spl0k' Féron
|
|
|
|
#
|
|
|
|
# Distributed under terms of the GNU AGPLv3 license.
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
from .test_db import DbTestCase
|
2017-11-25 21:21:58 +00:00
|
|
|
from .test_scanner import ScannerTestCase
|
2017-10-28 09:16:44 +00:00
|
|
|
|
|
|
|
def suite():
|
|
|
|
suite = unittest.TestSuite()
|
|
|
|
|
|
|
|
suite.addTest(unittest.makeSuite(DbTestCase))
|
2017-11-25 21:21:58 +00:00
|
|
|
suite.addTest(unittest.makeSuite(ScannerTestCase))
|
2017-10-28 09:16:44 +00:00
|
|
|
|
|
|
|
return suite
|
|
|
|
|