Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shamis/mockserver
Erlang mock server with elli
https://github.com/shamis/mockserver
elli erlang mock-server rest testing-tools
Last synced: about 2 months ago
JSON representation
Erlang mock server with elli
- Host: GitHub
- URL: https://github.com/shamis/mockserver
- Owner: shamis
- Created: 2015-11-10T10:08:32.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-11T15:38:49.000Z (about 9 years ago)
- Last Synced: 2024-10-22T02:22:08.620Z (3 months ago)
- Topics: elli, erlang, mock-server, rest, testing-tools
- Language: Erlang
- Size: 197 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mockserver
Erlang mockserver to test rest client side code.Can configure the responses and type of the request for each path and test it.
## Requirements
* Erlang Insatlled## Setup
Execute the following command insided the mockserver folder
```sh
./rebar g-d co
```Once that is done execute
```sh
./start.sh
```
Edit the rules.config file for the tests you require to runIn the Erlang console execute the following command
```erlang
mockserver:start(3000).
```
you can use any port number instead of 3000.