Metadata-Version: 1.1
Name: robotframework-amqp
Version: 0.0.2
Summary: AMQP library for usage in robotframework tests
Home-page: https://github.com/ctradu/robotframework-amqp
Author: Costin Radu
Author-email: UNKNOWN
License: MIT
Description: ## AMQP library for Robotframework
        
        ## Installation
        
        ### Using pip
        
        :warning: Not implemeted yet
        ```
        pip install robotframework-amqp
        ```
        
        ### Using the install script
        ```
        python setup.py install
        ```
        
        ## Usage
        In the settings section
        ```robotframework
        *** Settings ***
        Test Teardown     After tests
        Test Setup        Before tests
        Library           RmqMsgSend
        
        ```
        
        In the keywords section
        ```robotframework
        *** Keywords ***
        Before tests
            Init AMQP connection    ${amqp_host}  ${amqp_port}   ${amqp_user}  ${amqp_pass}   ${amqp_vhost}
            Set amqp destination    ${amqp_exchange}        ${amqp_routing_key}
        
        After tests
            close amqp connection
        ```
Keywords: robotframework testing amqp
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Testing
