This commit is contained in:
Ivo Donchev 2019-08-19 16:23:37 +03:00
parent 8ce40d76af
commit d7a569dccd

View File

@ -587,7 +587,7 @@ project_name
│   ├── models │   ├── models
│   │   └── test_some_model_name.py │   │   └── test_some_model_name.py
│   ├── selectors │   ├── selectors
│   │   └── test_some_selector_name.pyy │   │   └── test_some_selector_name.py
│   └── services │   └── services
│   ├── __init__.py │   ├── __init__.py
│   └── test_some_service_name.py │   └── test_some_service_name.py
@ -786,7 +786,7 @@ def buy_item(
The service: The service:
* Calls a selector for validation * Calls a selector for validation
* Create ORM object * Creates ORM object
* Calls a task * Calls a task
**Those are our tests:** **Those are our tests:**