From 46c297aea15fc1f76a71aa4410bca350a9abb979 Mon Sep 17 00:00:00 2001 From: Steve Pulec Date: Sat, 27 Jul 2013 16:29:47 -0400 Subject: [PATCH] Add autoscaling and ELB to readme --- README.md | 44 ++++++++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 243d8c203..2562f25d8 100644 --- a/README.md +++ b/README.md @@ -49,26 +49,30 @@ With the decorator wrapping the test, all the calls to s3 are automatically mock It gets even better! Moto isn't just S3. Here's the status of the other AWS services implemented. ```gherkin -|---------------------------------------------------------------------------| -| Service Name | Decorator | Development Status | -|---------------------------------------------------------------------------| -| DynamoDB | @mock_dynamodb | core endpoints done | -|---------------------------------------------------------------------------| -| EC2 | @mock_ec2 | core endpoints done | -| - AMI | | core endpoints done | -| - EBS | | core endpoints done | -| - Instances | | all endpoints done | -| - Security Groups | | core endpoints done | -| - Tags | | all endpoints done | -|---------------------------------------------------------------------------| -| S3 | @mock_s3 | core endpoints done | -|---------------------------------------------------------------------------| -| SES | @mock_ses | core endpoints done | -|---------------------------------------------------------------------------| -| SQS | @mock_sqs | core endpoints done | -|---------------------------------------------------------------------------| -| STS | @mock_sts | core endpoints done | -|---------------------------------------------------------------------------| +|------------------------------------------------------------------------------| +| Service Name | Decorator | Development Status | +|------------------------------------------------------------------------------| +| Autoscaling | @mock_autoscaling| core endpoints done | +|------------------------------------------------------------------------------| +| DynamoDB | @mock_dynamodb | core endpoints done | +|------------------------------------------------------------------------------| +| EC2 | @mock_ec2 | core endpoints done | +| - AMI | | core endpoints done | +| - EBS | | core endpoints done | +| - Instances | | all endpoints done | +| - Security Groups | | core endpoints done | +| - Tags | | all endpoints done | +|------------------------------------------------------------------------------| +| ELB | @mock_elb | core endpoints done | +|------------------------------------------------------------------------------| +| S3 | @mock_s3 | core endpoints done | +|------------------------------------------------------------------------------| +| SES | @mock_ses | core endpoints done | +|------------------------------------------------------------------------------| +| SQS | @mock_sqs | core endpoints done | +|------------------------------------------------------------------------------| +| STS | @mock_sts | core endpoints done | +|------------------------------------------------------------------------------| ``` ### Another Example