blob: ee1ba5487c2a1f7b881c7fa36883c74603bb8051 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
[metadata]
name = testapi-client
[global]
setup-hooks =
pbr.hooks.setup_hook
[files]
packages =
testapiclient
[entry_points]
console_scripts =
testapi = testapiclient.main:main
testapi =
auth = testapiclient.cli.auth:Auth
pod create = testapiclient.cli.pods:PodCreate
pod get = testapiclient.cli.pods:PodGet
pod delete = testapiclient.cli.pods:PodDelete
pod getone = testapiclient.cli.pods:PodGetOne
project create = testapiclient.cli.projects:ProjectCreate
project get = testapiclient.cli.projects:ProjectGet
project getone = testapiclient.cli.projects:ProjectGetOne
project delete = testapiclient.cli.projects:ProjectDelete
project put = testapiclient.cli.projects:ProjectPut
testcase create = testapiclient.cli.testcases:TestcaseCreate
testcase get = testapiclient.cli.testcases:TestcaseGet
testcase getone = testapiclient.cli.testcases:TestcaseGetOne
testcase delete = testapiclient.cli.testcases:TestcaseDelete
testcase put = testapiclient.cli.testcases:TestcasePut
scenario create = testapiclient.cli.scenarios:ScenarioCreate
scenario get = testapiclient.cli.scenarios:ScenarioGet
scenario getone = testapiclient.cli.scenarios:ScenarioGetOne
scenario delete = testapiclient.cli.scenarios:ScenarioDelete
scenario put = testapiclient.cli.scenarios:ScenarioPut
scenario installer create = testapiclient.cli.scenarios:InstallerCreate
scenario installer delete = testapiclient.cli.scenarios:InstallerDelete
scenario installer put = testapiclient.cli.scenarios:InstallerPut
scenario version create = testapiclient.cli.scenarios:VersionCreate
scenario version delete = testapiclient.cli.scenarios:VersionDelete
scenario version put = testapiclient.cli.scenarios:VersionPut
scenario version owner put = testapiclient.cli.scenarios:VersionOwnerPut
scenario project create = testapiclient.cli.scenarios:ProjectCreate
scenario project delete = testapiclient.cli.scenarios:ProjectDelete
scenario project put = testapiclient.cli.scenarios:ProjectPut
scenario custom create = testapiclient.cli.scenarios:CustomCreate
scenario custom delete = testapiclient.cli.scenarios:CustomDelete
scenario custom put = testapiclient.cli.scenarios:CustomPut
scenario trustindicator create = testapiclient.cli.scenarios:TrustIndicatorCreate
scenario score create = testapiclient.cli.scenarios:ScoreCreate
deployresult create = testapiclient.cli.deployresults:DeployresultCreate
deployresult get = testapiclient.cli.deployresults:DeployresultGet
deployresult getone = testapiclient.cli.deployresults:DeployresultGetOne
result create = testapiclient.cli.results:ResultCreate
result get = testapiclient.cli.results:ResultGet
result getone = testapiclient.cli.results:ResultGetOne
[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0
|