Add database CRUD.

This commit is contained in:
Steve Pulec 2015-01-08 22:18:06 -05:00
commit dbe3eb5459
9 changed files with 336 additions and 0 deletions

12
moto/rds/__init__.py Normal file
View 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)