Modificacion de los features variables

This commit is contained in:
Wendy Nestor
2014-07-08 08:58:42 -04:00
parent 02d19691c3
commit ab01704824
3 changed files with 19 additions and 15 deletions

View File

@@ -20,7 +20,7 @@ Feature: Process variables Resources
"""
{
"var_name": "My Variable",
"var_field_type": "text_field",
"var_field_type": "string",
"var_field_size": 12,
"var_label": "Nombre:",
"var_dbconnection": "",
@@ -44,8 +44,8 @@ Feature: Process variables Resources
And PUT this data:
"""
{
"var_name": "My Variable Modify",
"var_field_type": "text_field",
"var_field_type": "string",
"var_field_size": 1,
"var_label": "Nombre modificado:",
"var_dbconnection": "",

View File

@@ -72,9 +72,9 @@ Scenario Outline: Update a process variable
Examples:
| test_description | var_uid_number | var_field_type | var_field_size | var_label | var_dbconnection | var_sql | var_null | var_default | var_accepted_values |
| Update a text | 1 | text | 12 | Texto 1 - Updated | | | 0 | | |
| Update a text | 1 | string | 12 | Texto 1 - Updated | | | 0 | | |
| Update a date | 2 | date | 10 | Fecha - Updated | | | 0 | | |
| Update a dropdown | 3 | dropdown | 12 | Dropdown 1 - Updated | | SELECT IC_UID, IC_NAME FROM ISO_COUNTRY | 0 | | |
| Update a dropdown | 3 | string | 12 | Dropdown 1 - Updated | | SELECT IC_UID, IC_NAME FROM ISO_COUNTRY | 0 | | |