Revision: 3947
Author: janne.t.harkonen
Date: Thu Aug 26 23:39:25 2010
Log: some tuning
http://code.google.com/p/robotframework/source/detail?r=3947
Modified:
/trunk/doc/userguide/src/ExtendingRobotFramework/CreatingTestLibraries.txt
=======================================
---
/trunk/doc/userguide/src/ExtendingRobotFramework/CreatingTestLibraries.txt
Thu Aug 26 09:03:45 2010
+++
/trunk/doc/userguide/src/ExtendingRobotFramework/CreatingTestLibraries.txt
Thu Aug 26 23:39:25 2010
@@ -1490,11 +1490,6 @@
raise AssertionError("Title '%s' did not start with '%s'"
% (title, expected))
-.. Note:: The new keyword added in this particular example is generic
- and should be added to the original library instead. In
- practice it is so simple that it can created as a `user
- keyword`_ and is unlikely to be added.
-
A big difference with this approach compared to modifying the original
library is that the new library has a different name than the
original. A benefit is that you can easily tell that you are using a
@@ -1510,8 +1505,8 @@
__ `Handling keywords with same names`_
-Using delegation
-''''''''''''''''
+Using other libraries directly
+''''''''''''''''''''''''''''''
Because test libraries are technically just classes or modules, a
simple way to use another library is importing it and using its