Metadata-Version: 2.0
Name: robotframework-rabbitmq
Version: 1.0.1
Summary: A Robot Framework RabbitMq Library
Home-page: https://github.com/peterservice-rnd/robotframework-rabbitmq
Author: JSC PETER-SERVICE
Author-email: drse_aist_all@billing.ru
License: Apache License 2.0
Description-Content-Type: UNKNOWN
Keywords: testing testautomation robotframework rabbitmq amqp
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Testing
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Framework :: Robot Framework :: Library
Requires-Dist: amqp (==1.4.9)
Requires-Dist: requests (==2.12.4)
Requires-Dist: robotframework (==3.0.1)

# RobotFramework RabbitMq

[![Build Status](https://travis-ci.org/peterservice-rnd/robotframework-rabbitmq.svg?branch=master)](https://travis-ci.org/peterservice-rnd/robotframework-rabbitmq)

Short Description
---

[Robot Framework](http://www.robotframework.org) library to for working with RabbitMQ.

Installation
---

```
pip install robotframework-rabbitmq
```

## Documentation

See keyword documentation for RabbitMq library on [GitHub](https://github.com/peterservice-rnd/robotframework-rabbitmq/tree/master/docs).

Example
---
```robot
*** Settings ***
Library           RabbitMq
Library           Collections

*** Test Cases ***
Simple
    Create Rabbitmq Connection    my_host_name    15672    5672    guest    guest    alias=rmq
    ${overview}=    Overview
    Log Dictionary    ${overview}
    Close All Rabbitmq Connections
```

License
---

Apache License 2.0

