Create service and test directories when they don't exist

This commit is contained in:
Toshiya Kawasaki 2017-09-20 03:14:14 +09:00
commit 9cdc0d5070
7 changed files with 140 additions and 16 deletions

View file

@ -0,0 +1,7 @@
from __future__ import unicode_literals
from .models import {{ service }}_backends
from ..core.models import base_decorator
{{ service }}_backend = {{ service }}_backends['us-east-1']
mock_{{ service }} = base_decorator({{ service }}_backends)