Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pms-test-suite:master commit in: basic/, /
Date: Tue, 31 May 2011 18:10:38
Message-Id: db866d088dc47ed2e33afb81839c5bc0f2a7c828.mgorny@gentoo
1 commit: db866d088dc47ed2e33afb81839c5bc0f2a7c828
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 25 20:35:26 2011 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 31 18:01:32 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/pms-test-suite.git;a=commit;h=db866d08
7
8 Add library initializers.
9
10 ---
11 __init__.py | 14 ++++++++++++++
12 basic/__init__.py | 5 +++++
13 2 files changed, 19 insertions(+), 0 deletions(-)
14
15 diff --git a/__init__.py b/__init__.py
16 new file mode 100644
17 index 0000000..24971b6
18 --- /dev/null
19 +++ b/__init__.py
20 @@ -0,0 +1,14 @@
21 +# vim:fileencoding=utf-8
22 +# (c) 2011 Michał Górny <mgorny@g.o>
23 +# Released under the terms of the 2-clause BSD license.
24 +
25 +from PMSTestSuite.library import TestLibrary
26 +
27 +class ExampleLibrary(TestLibrary):
28 + """
29 + Standard test library for the PMS Test Suite.
30 + """
31 +
32 + test_names=[
33 + 'basic.phase_function_order.PhaseFunctionOrderTest'
34 + ]
35
36 diff --git a/basic/__init__.py b/basic/__init__.py
37 new file mode 100644
38 index 0000000..bb336a2
39 --- /dev/null
40 +++ b/basic/__init__.py
41 @@ -0,0 +1,5 @@
42 +# vim:fileencoding=utf-8
43 +# (c) 2011 Michał Górny <mgorny@g.o>
44 +# Released under the terms of the 2-clause BSD license.
45 +
46 +pass