From eb8b87172142a15aed213c41654a38f75c39f721 Mon Sep 17 00:00:00 2001 From: GabrielBarberini Date: Sun, 31 Mar 2024 15:31:36 -0300 Subject: [PATCH] renames test folder --- README.md | 40 +++++++++++++++++-- .../Infinity-API.postman_collection.json | 0 2 files changed, 37 insertions(+), 3 deletions(-) rename {test => tests}/Infinity-API.postman_collection.json (100%) diff --git a/README.md b/README.md index 76f6588..d922d63 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,6 @@ $ touch .env && echo MONGODB_CONNECTION_STRING="$ConnectionString" > .env ## Project structure ``` ├── README.md # this file -├── apprunner.yaml ├── requirements.txt │   ├── lib @@ -66,8 +65,43 @@ $ touch .env && echo MONGODB_CONNECTION_STRING="$ConnectionString" > .env │   ├── motor.py │   └── rocket.py │   -└── test - └── infinity-api-postman-collection.json +└── tests + ├── infinity-api-postman-collection.json + ├── integration + │   + └── unit + ├── test_secrets.py + ├── test_api.py + │   + ├── test_controllers + │   ├── test_environment.py + │   ├── test_flight.py + │   ├── test_motor.py + │   └── test_rocket.py + │ + ├── test_routes + │   ├── test_environment.py + │   ├── test_flight.py + │   ├── test_motor.py + │   └── test_rocket.py + │ + ├── test_repositories + │   ├── test_environment.py + │   ├── test_flight.py + │   ├── test_motor.py + │   └── test_rocket.py + │ + ├── test_models + │   ├── test_environment.py + │   ├── test_flight.py + │   ├── test_motor.py + │   └── test_rocket.py + │   + └── test_views +    ├── test_environment.py +    ├── test_flight.py +    ├── test_motor.py +    └── test_rocket.py ``` ## DOCS diff --git a/test/Infinity-API.postman_collection.json b/tests/Infinity-API.postman_collection.json similarity index 100% rename from test/Infinity-API.postman_collection.json rename to tests/Infinity-API.postman_collection.json