Metadata-Version: 2.1
Name: robotframework-sqless
Version: 0.0.1
Summary: robotframework-sqless is a SQL abstraction library for Robot Framework
Home-page: UNKNOWN
Author: Christian Kokoska
Author-email: info@softcreate.de
License: GPLv3
Description: ``robotframework-sqless`` is a  SQL abstraction library for [Robot Framework](https://robotframework.org/)
        
        ## Usage
        
        ```bash
        pip install robotframework-sqless
        ```
        
        ## Example testcase
        |                     |                           |                     |                       |
        | ----------------    | --------------------------| ------------------- | --------------------- |
        | *** Settings ***    |                           |                     |                       |
        | Library             | SQLess                    |                     |                       |
        | *** Test Cases ***  |                           |                     |                       |
        | Get Users By Filter |                           |                     |                       |
        |                     | ${users}                  | Users               | username=TestUser     |
        |                     | Length Should Be          | ${users}            | 1                     |
        
        The example presumes there is a database with a user table and at least a column `username`.
        
        ## Schema definition
        The database schema must be defined in an .yml file. For the above example, the following file should apply:
        
        ```yaml
        database_config:
          dbms: sqlite
          db: sqless.db
        
        schema:
          users:
            tablename: user
            fields:
              id: integer
              username: char
        ```
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
