[lambda] Implement ListFunctions, GetFunction, and DeleteFunction

This commit is contained in:
Hugo Lopes Tavares 2016-02-12 14:39:20 -05:00
commit bfad9b9ed6
9 changed files with 401 additions and 2 deletions

View file

@ -1,5 +1,6 @@
from __future__ import unicode_literals
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.datapipeline import datapipeline_backend
@ -43,7 +44,8 @@ BACKENDS = {
'sns': sns_backend,
'sqs': sqs_backend,
'sts': sts_backend,
'route53': route53_backend
'route53': route53_backend,
'lambda': lambda_backend,
}