Skip to content

Implement testing project structure #40

@H4ppy-04

Description

@H4ppy-04

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

No one assigned

    Labels

    unitFor issues related to unit testing.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions