Skip to content

Commit 8d5633a

Browse files
renames test folder
1 parent faf856f commit 8d5633a

File tree

2 files changed

+38
-3
lines changed

2 files changed

+38
-3
lines changed

README.md

Lines changed: 38 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ $ touch .env && echo MONGODB_CONNECTION_STRING="$ConnectionString" > .env
2525
## Project structure
2626
```
2727
├── README.md # this file
28-
├── apprunner.yaml
2928
├── requirements.txt
3029
│  
3130
├── lib
@@ -66,8 +65,44 @@ $ touch .env && echo MONGODB_CONNECTION_STRING="$ConnectionString" > .env
6665
│   ├── motor.py
6766
│   └── rocket.py
6867
│  
69-
└── test
70-
└── infinity-api-postman-collection.json
68+
└── tests
69+
├── infinity-api-postman-collection.json
70+
│  
71+
├── integration
72+
│  
73+
└── unit
74+
├── test_secrets.py
75+
├── test_api.py
76+
│  
77+
├── test_controllers
78+
│   ├── test_environment.py
79+
│   ├── test_flight.py
80+
│   ├── test_motor.py
81+
│   └── test_rocket.py
82+
83+
├── test_routes
84+
│   ├── test_environment.py
85+
│   ├── test_flight.py
86+
│   ├── test_motor.py
87+
│   └── test_rocket.py
88+
89+
├── test_repositories
90+
│   ├── test_environment.py
91+
│   ├── test_flight.py
92+
│   ├── test_motor.py
93+
│   └── test_rocket.py
94+
95+
├── test_models
96+
│   ├── test_environment.py
97+
│   ├── test_flight.py
98+
│   ├── test_motor.py
99+
│   └── test_rocket.py
100+
│  
101+
└── test_views
102+
   ├── test_environment.py
103+
   ├── test_flight.py
104+
   ├── test_motor.py
105+
   └── test_rocket.py
71106
```
72107

73108
## DOCS

0 commit comments

Comments
 (0)