Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iain/fake_sqs
Provides a fake SQS server that you can run locally to test against
https://github.com/iain/fake_sqs
Last synced: 2 months ago
JSON representation
Provides a fake SQS server that you can run locally to test against
- Host: GitHub
- URL: https://github.com/iain/fake_sqs
- Owner: iain
- License: mit
- Created: 2012-11-04T14:15:18.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2019-10-10T15:31:27.000Z (over 5 years ago)
- Last Synced: 2024-11-14T12:56:47.172Z (2 months ago)
- Language: Ruby
- Size: 109 KB
- Stars: 292
- Watchers: 6
- Forks: 103
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- starred-awesome - fake_sqs - Provides a fake SQS server that you can run locally to test against (Ruby)
README
# Fake SQS [![Build Status](https://api.travis-ci.org/iain/fake_sqs.svg?branch=master)](http://travis-ci.org/iain/fake_sqs) [![Gem Version](https://badge.fury.io/rb/fake_sqs.svg)](https://badge.fury.io/rb/fake_sqs)
Fake SQS is a lightweight server that mocks the Amazon SQS API.
It is extremely useful for testing SQS applications in a sandbox environment without actually
making calls to Amazon, which not only requires a network connection, but also costs
money.Many features are supported and if you miss something, open a pull.
## Installation
```
gem install fake_sqs
```## Running
```
fake_sqs --database /path/to/database.yml
```## Development
```
bundle install
rake
```