-
Notifications
You must be signed in to change notification settings - Fork 6
Closed
Labels
unitFor issues related to unit testing.For issues related to unit testing.
Description
Description: The structure of testing directories should be modified as follows:
├── all_breaches.json
├── Common
│ ├── breach_checker.py
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── breach_checker.cpython-310.pyc
│ │ ├── __init__.cpython-310.pyc
│ │ └── utils.cpython-310.pyc
│ └── utils.py
├── Config
│ ├── check_config_validity.py
│ ├── config.py
│ ├── formatter.py
│ ├── logger.ini
│ └── __pycache__
│ └── config.cpython-310.pyc
├── Email
│ ├── email_reputation_checker.py
│ ├── __init__.py
│ └── __pycache__
│ ├── email_reputation_checker.cpython-310.pyc
│ └── __init__.cpython-310.pyc
├── IP
│ ├── __init__.py
│ ├── ip_reputation_checker.py
│ └── __pycache__
│ ├── __init__.cpython-310.pyc
│ └── ip_reputation_checker.cpython-310.pyc
├── LICENSE
├── Logs
├── main.py
├── README.md
├── requirements.txt
├── tests
│ ├── Common
│ │ ├── test_breach_checker.py
│ │ └── test_utils.py
│ ├── Config
│ │ ├── test_check_config_validity.py
│ │ ├── test_config.py
│ │ └── test_formatter.py
│ ├── Email
│ │ └── test_email_reputation_checker.py
│ ├── IP
│ │ └── test_ip_reputation_checker.py
│ └── Username
│ └── test_username_reputation_checker.py
└── Username
├── __init__.py
├── __pycache__
│ ├── __init__.cpython-310.pyc
│ └── username_reputation_checker.cpython-310.pyc
└── username_reputation_checker.py
Metadata
Metadata
Assignees
Labels
unitFor issues related to unit testing.For issues related to unit testing.