Metadata-Version: 2.1
Name: robotframework-rabbitmq
Version: 2.0.1.dev0
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
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: pika (==0.12.0)
Requires-Dist: requests (==2.19.1)
Requires-Dist: robotframework (==3.0.4)

RobotFramework RabbitMQ
=======================

|Build Status|

Short Description
-----------------

`Robot Framework`_ library for for working with RabbitMQ.

Installation
------------

Install the library from PyPI using pip:

::

    pip install robotframework-rabbitmq

Documentation
-------------

See keyword documentation for RabbitMQ library `here`_.

Example
-------

.. code:: robotframework

    *** Settings ***
    Library    RabbitMq
    Library    Collections

    *** Test Cases ***
    Simple Test
        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

.. _Robot Framework: http://www.robotframework.org
.. _here: https://rawgit.com/peterservice-rnd/robotframework-rabbitmq/master/docs/RabbitMq.html

.. |Build Status| image:: https://travis-ci.org/peterservice-rnd/robotframework-rabbitmq.svg?branch=master
   :target: https://travis-ci.org/peterservice-rnd/robotframework-rabbitmq

