Revision: 3853
Author: jprantan
Date: Fri Aug 20 00:17:35 2010
Log: Moved to own directory.
http://code.google.com/p/robotframework/source/detail?r=3853

Added:
 /trunk/atest/robot/cli/runner/dryrun
 /trunk/atest/robot/cli/runner/dryrun/dryrun.txt
Deleted:
 /trunk/atest/robot/cli/runner/dryrun.txt

=======================================
--- /dev/null
+++ /trunk/atest/robot/cli/runner/dryrun/dryrun.txt     Fri Aug 20 00:17:35 2010
@@ -0,0 +1,69 @@
+*** Settings ***
+Suite Setup     Run Tests  --runmode dryrun  cli/dryrun/
+Force Tags      regression  pybot  jybot
+Resource        atest_resource.txt
+
+*** Test Cases ***
+
+Passing keywords
+    ${tc}=  Check Test Case  ${TESTNAME}
+    Should have correct number of keywords  ${tc}  3
+    Status should be  ${tc}  PASS
+    Status should be  ${tc.kws[0]}  NOT_RUN
+    Should have correct number of keywords  ${tc.kws[2]}  1
+
+Userkeyword return value
+    Check Test Case  ${TESTNAME}
+
+Keywords that would fail
+    ${tc}=  Check Test Case  ${TESTNAME}
+    Should have correct number of keywords  ${tc}  3
+    Should have correct number of keywords  ${tc.kws[1]}  2
+
+For Loops
+    ${tc}=  Check Test Case  ${TESTNAME}
+    Should have correct number of keywords  ${tc}  3
+    Should have correct number of keywords  ${tc.kws[0]}  1
+    Should have correct number of keywords  ${tc.kws[0].kws[0]}  2
+    Should have correct number of keywords  ${tc.kws[1]}  3
+    Should have correct number of keywords  ${tc.kws[1].kws[1]}  1
+
+Non-existing keyword name
+    Check Test Case  ${TESTNAME}
+
+Too few arguments
+    Check Test Case  ${TESTNAME}
+
+Too few arguments for UK
+    Check Test Case  ${TESTNAME}
+
+Too many arguments
+    Check Test Case  ${TESTNAME}
+
+Invalid syntax in UK
+    Check Test Case  ${TESTNAME}
+
+Arguments given as list variable
+    Check Test Case  ${TESTNAME}
+
+Multiple Failures
+    Check Test Case  ${TESTNAME}
+
+Invalid imports
+ Check Stderr Contains Importing test library 'DoesNotExist' failed: ImportError: No module named DoesNotExist
+    Check Stderr Contains  Variable file 'wrong_path.py' does not exist
+    Check Stderr Contains  Resource file 'NonExisting.tsv' does not exist
+
+Test from other suite
+    Check Test Case  Some Other Test
+
+*** Keywords ***
+Should have correct number of keywords
+    [Arguments]  ${test or uk}  ${exp number of kws}
+    Log  ${test or uk.kws}
+ Should Be Equal As Integers ${test or uk.kw_count} ${exp number of kws}
+
+Status should be
+    [Arguments]  ${tc or kw}  ${exp status}
+    Should Be Equal  ${tc or kw.status}  ${exp status}
+
=======================================
--- /trunk/atest/robot/cli/runner/dryrun.txt    Tue May 11 05:53:51 2010
+++ /dev/null
@@ -1,69 +0,0 @@
-*** Settings ***
-Suite Setup     Run Tests  --runmode dryrun  cli/dryrun/
-Force Tags      regression  pybot  jybot
-Resource        atest_resource.txt
-
-*** Test Cases ***
-
-Passing keywords
-    ${tc}=  Check Test Case  ${TESTNAME}
-    Should have correct number of keywords  ${tc}  3
-    Status should be  ${tc}  PASS
-    Status should be  ${tc.kws[0]}  NOT_RUN
-    Should have correct number of keywords  ${tc.kws[2]}  1
-
-Userkeyword return value
-    Check Test Case  ${TESTNAME}
-
-Keywords that would fail
-    ${tc}=  Check Test Case  ${TESTNAME}
-    Should have correct number of keywords  ${tc}  3
-    Should have correct number of keywords  ${tc.kws[1]}  2
-
-For Loops
-    ${tc}=  Check Test Case  ${TESTNAME}
-    Should have correct number of keywords  ${tc}  3
-    Should have correct number of keywords  ${tc.kws[0]}  1
-    Should have correct number of keywords  ${tc.kws[0].kws[0]}  2
-    Should have correct number of keywords  ${tc.kws[1]}  3
-    Should have correct number of keywords  ${tc.kws[1].kws[1]}  1
-
-Non-existing keyword name
-    Check Test Case  ${TESTNAME}
-
-Too few arguments
-    Check Test Case  ${TESTNAME}
-
-Too few arguments for UK
-    Check Test Case  ${TESTNAME}
-
-Too many arguments
-    Check Test Case  ${TESTNAME}
-
-Invalid syntax in UK
-    Check Test Case  ${TESTNAME}
-
-Arguments given as list variable
-    Check Test Case  ${TESTNAME}
-
-Multiple Failures
-    Check Test Case  ${TESTNAME}
-
-Invalid imports
- Check Stderr Contains Importing test library 'DoesNotExist' failed: ImportError: No module named DoesNotExist
-    Check Stderr Contains  Variable file 'wrong_path.py' does not exist
-    Check Stderr Contains  Resource file 'NonExisting.tsv' does not exist
-
-Test from other suite
-    Check Test Case  Some Other Test
-
-*** Keywords ***
-Should have correct number of keywords
-    [Arguments]  ${test or uk}  ${exp number of kws}
-    Log  ${test or uk.kws}
- Should Be Equal As Integers ${test or uk.kw_count} ${exp number of kws}
-
-Status should be
-    [Arguments]  ${tc or kw}  ${exp status}
-    Should Be Equal  ${tc or kw.status}  ${exp status}
-

Reply via email to