Revision: 4256
Author: jussi.ao.malinen
Date: Sun Oct 17 14:08:08 2010
Log: minor fixes
http://code.google.com/p/robotframework/source/detail?r=4256

Modified:
 /wiki/HowToWriteGoodTestCasesWithExamples.wiki

=======================================
--- /wiki/HowToWriteGoodTestCasesWithExamples.wiki      Sun Oct 17 13:43:03 2010
+++ /wiki/HowToWriteGoodTestCasesWithExamples.wiki      Sun Oct 17 14:08:08 2010
@@ -262,14 +262,15 @@
* Lower case with variables only available inside certain test or keyword
     * Upper case with others (global, suite or test level)
     * Both space and underscore can be used as word separator
- * Recommended to list also variables that are set dynamically in the variable table + * Variables that are set dynamically should also be listed in variable table
     * Set typically using `Set Global/Suite/Test Variable` keywords
     * The initial value should explain where/how the real value is set

 {{{
 *** Variables ***
-${LOGIN URL}        http://localhost:7272/
-${BROWSER}          firefox
+# URL for CI server. Override with your local server if run elsewhere.
+${SERVER URL}        http://sre-12.example.com/
+${BROWSER}           actual value set dynamically at suite setup

 *** Keywords ***
 Title Should Begin With

Reply via email to