In this package, you will find all sharable aws tools.
| Parameter store | DynamoDB | S3 | SQS | |
|---|---|---|---|---|
| Implemented | ✅ | ✅ | ✅ | ✅ |
Use Makefile to start docker container with fake AWS environment (Localstack).
Please write integration tests.
Integration test should:
- Include Integration word!
- Include
testing.Short()!
Example:
package integrationtests
import "testing"
func TestSQSIntegration(t *testing.T) {
if testing.Short() {
t.Skip("skipping integration test")
}
return
}