Metadata-Version: 2.1
Name: RobotFramework-Examples
Version: 0.0.5
Summary: Examples in Robot Framework. Expands example data to individual test cases
Home-page: UNKNOWN
Author: Vernon Crabtree
Author-email: vernon.b.crabtree@gmail.com
License: UNKNOWN
Project-URL: Examples, https://github.com/worldline/RobotFramework-Examples
Platform: UNKNOWN
Requires-Python: >=3.8
License-File: LICENSE

# RobotFramework-Examples

Support for Examples: in Robot Framework like in other BDD style test frameworks

An example of a test case looks like this:

.. code:: robotframework

    *** Settings ***
    Library    Examples

    *** Test cases ***
    My test with examples for ${name}
        Log    Hello ${name}, welcome to ${where welcome}    console=True
    
        Examples:    name      where welcome    --
                ...    Joe       the world!
                ...    Arthur    Camelot (clip clop).
                ...    Patsy     it's only a model!


Keyword information can be found here: 
.. _Keywords: https://worldline.github.io/RobotFramework-Examples


