Revision: 3981
Author: jussi.ao.malinen
Date: Sat Aug 28 08:15:16 2010
Log: more cleanup
http://code.google.com/p/robotframework/source/detail?r=3981
Modified:
/trunk/doc/userguide/RobotFrameworkUserGuide.html
/trunk/doc/userguide/src/ExtendingRobotFramework/InternalAPI.txt
=======================================
--- /trunk/doc/userguide/RobotFrameworkUserGuide.html Sat Aug 28 08:10:51
2010
+++ /trunk/doc/userguide/RobotFrameworkUserGuide.html Sat Aug 28 08:15:16
2010
@@ -12691,15 +12691,15 @@
<h3><a class="toc-backref" href="#id572">4.4.3 Parsed
test data</a></h3>
<p>Package <span class="code">robot.parsing</span> contains tools for
parsing and handling test data.
<span class="code">TestCaseFile</span> and <span
class="code">TestDataDirectory</span> classes can be instantiated
-with parameter <span class="code">source</span> to start parsing existing
test data. Example below
-shows how to parse names of tests from a test file. For more details please
+with named parameter <span class="code">source</span> to start parsing
existing test data. Example
+below shows how to parse names of tests from a test file. For more details
please
see the source code of Robot Framework directly.</p>
<div class="highlight"><pre><span class="kn">from</span> <span
class="nn">robot.parsing</span> <span class="kn">import</span> <span
class="n">TestCaseFile</span>
<span class="n">suite</span> <span class="o">=</span> <span
class="n">TestCaseFile</span><span class="p">(</span><span
class="n">source</span><span class="o">=</span><span
class="s">'path/to/tests.html'</span><span class="p">)</span>
<span class="k">print</span> <span class="s">'Suite: '</span><span
class="p">,</span> <span class="n">suite</span><span
class="o">.</span><span class="n">name</span>
<span class="k">for</span> <span class="n">test</span> <span
class="ow">in</span> <span class="n">suite</span><span
class="o">.</span><span class="n">testcase_table</span><span
class="p">:</span>
- <span class="k">print</span> <span class="n">test</span><span
class="o">.</span><span class="n">name</span>
+ <span class="k">print</span> <span class="n">test</span><span
class="o">.</span><span class="n">name</span>
</pre></div>
</div>
<div class="section" id="runnable-test-data">
@@ -13606,7 +13606,7 @@
<div class="footer">
<hr class="footer" />
<p>Generated by <a class="reference external"
href="http://docutils.sourceforge.net/rst.html">reStructuredText</a>.
Syntax highlighting by <a class="reference external"
href="http://pygments.org/">Pygments</a>.</p>
-<p>Generated on: 2010-08-28 15:09 UTC.
+<p>Generated on: 2010-08-28 15:14 UTC.
</p>
</div>
=======================================
--- /trunk/doc/userguide/src/ExtendingRobotFramework/InternalAPI.txt Sat
Aug 28 08:14:22 2010
+++ /trunk/doc/userguide/src/ExtendingRobotFramework/InternalAPI.txt Sat
Aug 28 08:15:16 2010
@@ -66,7 +66,7 @@
Package :code:`robot.parsing` contains tools for parsing and handling test
data.
:code:`TestCaseFile` and :code:`TestDataDirectory` classes can be
instantiated
-with named parameter :code:`source` to start parsing existing test data.
Example
+with named argument :code:`source` to start parsing existing test data.
Example
below shows how to parse names of tests from a test file. For more details
please
see the source code of Robot Framework directly.