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
44Tools to ease creating larger test libraries for `Robot Framework `_ using
55Python.
66
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.
89
910Example
1011-------
Original file line number Diff line number Diff line change 1212# See the License for the specific language governing permissions and
1313# limitations under the License.
1414
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+
1522import inspect
1623import sys
1724
@@ -30,6 +37,8 @@ def decorator(func):
3037
3138PY2 = sys .version_info < (3 ,)
3239
40+ __version__ = '1.0rc1'
41+
3342
3443class HybridCore (object ):
3544
You can’t perform that action at this time.
0 commit comments