File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ Python Library Core
4
4
Tools to ease creating larger test libraries for `Robot Framework `_ using
5
5
Python.
6
6
7
- At the moment work-in-progress. Planned to be used with Selenium2Library.
7
+ Code ought to be pretty much ready and it is already used by Selenium2Library.
8
+ Better documentation and packaging still to do.
8
9
9
10
Example
10
11
-------
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
+ """Generic test library core for Robot Framework.
16
+
17
+ Main usage is easing creating larger test libraries. For more information and
18
+ examples see the project pages at
19
+ https://github.com/robotframework/PythonLibCore
20
+ """
21
+
15
22
import inspect
16
23
import sys
17
24
@@ -30,6 +37,8 @@ def decorator(func):
30
37
31
38
PY2 = sys .version_info < (3 ,)
32
39
40
+ __version__ = '1.0rc1'
41
+
33
42
34
43
class HybridCore (object ):
35
44
You can’t perform that action at this time.
0 commit comments