Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
maurosoria
GitHub Repository: maurosoria/dirsearch
Path: blob/master/testing.py
896 views
1
#!/usr/bin/env python3
2
#
3
# -*- coding: utf-8 -*-
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
8
#
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
# GNU General Public License for more details.
13
#
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17
# MA 02110-1301, USA.
18
#
19
# Author: Mauro Soria
20
21
import unittest
22
23
from tests.connection.test_dns import TestDNS # noqa: F401
24
from tests.core.test_scanner import TestScanner # noqa: F401
25
from tests.parse.test_config import TestConfigParser # noqa: F401
26
from tests.parse.test_headers import TestHeadersParser # noqa: F401
27
from tests.parse.test_url import TestURLParsers # noqa: F401
28
from tests.utils.test_common import TestCommonUtils # noqa: F401
29
from tests.utils.test_crawl import TestCrawl # noqa: F401
30
from tests.utils.test_diff import TestDiff # noqa: F401
31
from tests.utils.test_mimetype import TestMimeTypeUtils # noqa: F401
32
from tests.utils.test_random import TestRandom # noqa: F401
33
from tests.utils.test_schemedet import TestSchemedet # noqa: F401
34
35
36
if __name__ == "__main__":
37
unittest.main()
38
39