endpoints covers so far: - create_organization - describe_organization - create_account - describe_account - list_accounts all tests passing. could use some advise from maintaners.
7 lines
243 B
Python
7 lines
243 B
Python
from __future__ import unicode_literals
|
|
from .models import organizations_backend
|
|
from ..core.models import base_decorator
|
|
|
|
organizations_backends = {"global": organizations_backend}
|
|
mock_organizations = base_decorator(organizations_backends)
|