Metadata-Version: 2.1
Name: testflows
Version: 1.5.5
Summary: TestFlows Test Framework
Home-page: https://github.com/testflows/testflows
Author: Vitaliy Zakaznikov
Author-email: vzakaznikov@testflows.com
License: Apache-2.0
Description: # TestFlows Test Framework
        
        **TestFlows is still work in progress and is currently under development.
        Please use it only for reference.**
        
        ![TestFlows](https://raw.githubusercontent.com/testflows/TestFlows-ArtWork/master/images/logo.png)
        
        ## Introduction
        
        [TestFlows] is a **flow** oriented test framework that can be used for functional,
        integration, acceptance and unit testing. It uses **everything is a test** approach
        with the focus on providing test designers flexibility in writing and running their tests.
        
        ## Supported environment
        
        * [Ubuntu] 18.04
        * [Python 3] >= 3.6
        
        ## Installation
        
        You can install [TestFlows] using [pip3]
        
        ```bash
        $ pip3 install testflows
        ```
        
        or from sources
        
        ```bash
        $ git clone https://github.com/testflows/TestFlows.git
        $ cd TestFlows
        $ ./build ; ./install
        ```
        
        ## Styles
        
        [TestFlows] supports defining tests using either the traditional keywords
        
        *  **Module**, **Suite**, **Test**, and **Step**
        
        or using [BDD] (Behavior Driven Development) inspired keywords
        
        * **Module**, **Feature**, **Scenario**, **Given**, **When**, **Then**, **But**, **And**, **By** and **Finally**
        
        ## Hello [TestFlows]
        
        An inline test scenario can be defined as follows
        
        ```python
        from testflows.core import Scenario
        
        with Scenario("Hello TestFlows!"):
            pass
        ```
        
        then just run it using `python3` command
        
        ```bash
        $ python3 ./test.py 
        Oct 21,2019 18:44:06   ⟥  Scenario Hello TestFlows!
                         1ms   ⟥⟤ OK Hello TestFlows!, /Hello TestFlows!
        
        1 scenario (1 ok)
        
        Total time 1ms
        
        Executed on Dec 31,1969 19:00
        TestFlows Test Framework v1.3.191021.1223802
        ```
        
        ## What to know more?
        
        Join [@TestFlows] channel on [Telegram].
        
        [@TestFlows]: https://telegram.me/testflows
        [Telegram]: https://telegram.org/
        [BDD]: https://en.wikipedia.org/wiki/Behavior-driven_development
        [TestFlows]: https://github.com/testflows/testflows
        [pip3]: https://github.com/pypa/pip
        [Python 3]: https://www.python.org/
        [Ubuntu]: https://ubuntu.com/ 
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
