Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement testing project structure #40

Closed
Tracked by #38
H4ppy-04 opened this issue Apr 10, 2023 · 0 comments · May be fixed by #44
Closed
Tracked by #38

Implement testing project structure #40

H4ppy-04 opened this issue Apr 10, 2023 · 0 comments · May be fixed by #44
Labels
unit For issues related to unit testing.

Comments

@H4ppy-04
Copy link
Collaborator

H4ppy-04 commented Apr 10, 2023

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
@H4ppy-04 H4ppy-04 added the unit For issues related to unit testing. label Apr 10, 2023
@initd1 initd1 linked a pull request Apr 11, 2023 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
unit For issues related to unit testing.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant