Skip to content

Commit

Permalink
Update basic_tests.robot
Browse files Browse the repository at this point in the history
try different syntax for postgres, oracle etc.
  • Loading branch information
carnegiemedal authored Aug 14, 2023
1 parent 5e8b2ca commit a992bb0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/tests/common_tests/basic_tests.robot
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ SQL Statement Ending Without Semicolon Works

SQL Statement With Parameters Works
@{params}= Create List 2
${output}= Query SELECT * FROM person WHERE id < ? parameters=${params}
TRY
${output}= Query SELECT * FROM person WHERE id < ? parameters=${params}
EXCEPT
${output}= Query SELECT * FROM person WHERE id < :id parameters=${params}
END
Length Should Be ${output} 1

Create Person Table
Expand Down

0 comments on commit a992bb0

Please sign in to comment.