Completed the CloudWatch Events mocking module and tests.

This commit is contained in:
Justin Wiley 2016-12-01 17:23:51 -08:00
commit db0b494b4f
5 changed files with 367 additions and 47 deletions

View file

@ -1,28 +1,30 @@
from __future__ import unicode_literals
from moto.apigateway import apigateway_backend
from moto.autoscaling import autoscaling_backend
from moto.awslambda import lambda_backend
from moto.cloudwatch import cloudwatch_backend
from moto.cloudformation import cloudformation_backend
from moto.cloudwatch import cloudwatch_backend
from moto.datapipeline import datapipeline_backend
from moto.dynamodb import dynamodb_backend
from moto.dynamodb2 import dynamodb_backend2
from moto.ec2 import ec2_backend
from moto.elb import elb_backend
from moto.emr import emr_backend
from moto.events import events_backend
from moto.glacier import glacier_backend
from moto.iam import iam_backend
from moto.opsworks import opsworks_backend
from moto.kinesis import kinesis_backend
from moto.kms import kms_backend
from moto.opsworks import opsworks_backend
from moto.rds import rds_backend
from moto.redshift import redshift_backend
from moto.route53 import route53_backend
from moto.s3 import s3_backend
from moto.ses import ses_backend
from moto.sns import sns_backend
from moto.sqs import sqs_backend
from moto.sts import sts_backend
from moto.route53 import route53_backend
BACKENDS = {
'apigateway': apigateway_backend,
@ -34,6 +36,7 @@ BACKENDS = {
'dynamodb2': dynamodb_backend2,
'ec2': ec2_backend,
'elb': elb_backend,
'events': events_backend,
'emr': emr_backend,
'glacier': glacier_backend,
'iam': iam_backend,