robotframework-wiremock

Robot framework library for WireMock

MIT License

Stars
6

WireMock Robot Framework Library

This project implements the Robot Framework keywords to interact with WireMock through HTTP.

Installation

$ pip install robotframework-wiremock

Usage

Add library to settings section:

*** Settings ***
Library  WireMockLibrary

Keyword documentation for the latest release

See tests/robot/tests/integration_tests.robot for detailed usage examples.

Development

Prerequisites:

  • docker-compose (to run integration tests)
  • flake8 (for static code analysis)
  • twine (release)
  • robot-framework (for doc generation)

Install prerequisites:

$ make setup

Print help:

$ make help

Start wiremock and run tests:

$ make tester/test

Run lint:

$ make lint