Revision: 2402
Author: pekka.klarck
Date: Sun Nov 29 16:41:47 2009
Log: wiki syntax fixes
http://code.google.com/p/robotframework/source/detail?r=2402

Modified:
 /wiki/HowToUseC.wiki

=======================================
--- /wiki/HowToUseC.wiki        Sun Nov 29 16:36:55 2009
+++ /wiki/HowToUseC.wiki        Sun Nov 29 16:41:47 2009
@@ -18,18 +18,15 @@
 The example is available on the
 [http://code.google.com/p/robotframework/downloads/list download page]
 as
-[http://robotframework.googlecode.com/files/robotframework-c-example-20091023.zip
-robotframework-c-example-<date>.zip].  After downloading and unzipping
-the package, you should have all the files in a directory
-`robotframework-c-example`.
+[http://robotframework.googlecode.com/files/robotframework-c-example-20091023.zip robotframework-c-example-<date>.zip].
+After downloading and unzipping the package, you should have all the
+files in a directory `robotframework-c-example`.

 To try out the example first run `make` in the directory that was
 created when you unzipped the package. This will create library
 `liblogin.so`, a shared library that is needed to use ctypes module.
-The example tests can be executed simply using the command below. All
-the test should pass.
-
-    `pybot LoginTests.tsv`
+The example tests can be executed using command `pybot LoginTests.tsv`.
+All the test should pass.


 = System under test =
@@ -94,8 +91,8 @@
 The `if __name__ == '__main__'` block above is not used by the
 executed tests, but it allows using the library code as a tool for
 manual testing. You can test this handy behavior by running, for
-example, `python LoginLibrary.py demo mode` or `python LoginLibrary.py
-demo invalid` on the command line.
+example, `python LoginLibrary.py demo mode` or
+`python LoginLibrary.py demo invalid` on the command line.


 = Test cases =

Reply via email to