Add database CRUD.
This commit is contained in:
parent
e05a061993
commit
dbe3eb5459
9 changed files with 336 additions and 0 deletions
12
moto/rds/__init__.py
Normal file
12
moto/rds/__init__.py
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
from __future__ import unicode_literals
|
||||
from .models import rds_backends
|
||||
from ..core.models import MockAWS
|
||||
|
||||
rds_backend = rds_backends['us-east-1']
|
||||
|
||||
|
||||
def mock_rds(func=None):
|
||||
if func:
|
||||
return MockAWS(rds_backends)(func)
|
||||
else:
|
||||
return MockAWS(rds_backends)
|
||||
Loading…
Add table
Add a link
Reference in a new issue