tlb-testunit18 0.3.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,8 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
require 'tlb'
|
3
|
-
require 'tlb
|
4
|
-
require 'tlb
|
5
|
-
require 'test
|
3
|
+
require File.join('tlb', 'test_unit', 'test_splitter')
|
4
|
+
require File.join('tlb', 'test_unit', 'test_observer')
|
5
|
+
require File.join('test', 'unit', 'ui', 'testrunnermediator')
|
6
6
|
|
7
7
|
module Tlb::TestUnit::MediatorInflection
|
8
8
|
def self.included base
|
metadata
CHANGED
@@ -1,51 +1,49 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: tlb-testunit18
|
3
|
-
version: !ruby/object:Gem::Version
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.3
|
4
5
|
prerelease:
|
5
|
-
version: 0.3.2
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
7
|
+
authors:
|
8
8
|
- Janmejay Singh
|
9
9
|
- Pavan KS
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
- !ruby/object:Gem::Dependency
|
13
|
+
date: 2013-02-19 00:00:00.000000000Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
17
16
|
name: rake
|
18
|
-
|
19
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
17
|
+
requirement: &10610860 !ruby/object:Gem::Requirement
|
20
18
|
none: false
|
21
|
-
requirements:
|
22
|
-
- -
|
23
|
-
- !ruby/object:Gem::Version
|
24
|
-
version:
|
19
|
+
requirements:
|
20
|
+
- - ! '>='
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '0'
|
25
23
|
type: :runtime
|
26
|
-
version_requirements: *id001
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: tlb-core
|
29
24
|
prerelease: false
|
30
|
-
|
25
|
+
version_requirements: *10610860
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: tlb-core
|
28
|
+
requirement: &10610360 !ruby/object:Gem::Requirement
|
31
29
|
none: false
|
32
|
-
requirements:
|
33
|
-
- -
|
34
|
-
- !ruby/object:Gem::Version
|
35
|
-
version: 0.3.
|
30
|
+
requirements:
|
31
|
+
- - =
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.3.3
|
36
34
|
type: :runtime
|
37
|
-
|
38
|
-
|
39
|
-
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: *10610360
|
37
|
+
description: ! 'TLB-Ruby component that provides support for load balancing tests
|
38
|
+
written using test::unit. This library consumes APIs provided by tlb-core.
|
40
39
|
|
40
|
+
'
|
41
41
|
email: singh.janmejay@gmail.com;itspanzi@gmail.com
|
42
42
|
executables: []
|
43
|
-
|
44
43
|
extensions: []
|
45
|
-
|
46
|
-
extra_rdoc_files:
|
44
|
+
extra_rdoc_files:
|
47
45
|
- README.markdown
|
48
|
-
files:
|
46
|
+
files:
|
49
47
|
- testunit/lib/tlb/test_unit/mediator_inflection.rb
|
50
48
|
- testunit/lib/tlb/test_unit/test_observer.rb
|
51
49
|
- testunit/lib/tlb/test_unit/test_splitter.rb
|
@@ -53,50 +51,70 @@ files:
|
|
53
51
|
- README.markdown
|
54
52
|
homepage: http://github.com/test-load-balancer/tlb.rb
|
55
53
|
licenses: []
|
54
|
+
post_install_message: ! '=========================================================================
|
55
|
+
|
56
|
+
Documentation: Detailed configuration documentation can be found at http://test-load-balancer.github.com.
|
57
|
+
Documentation section in this website hosts documentation for every public release.
|
58
|
+
|
56
59
|
|
57
|
-
post_install_message: |
|
58
|
-
=========================================================================
|
59
|
-
Documentation: Detailed configuration documentation can be found at http://test-load-balancer.github.com. Documentation section in this website hosts documentation for every public release.
|
60
|
-
|
61
60
|
-------------------------------------------------------------------------
|
62
|
-
|
63
|
-
|
61
|
+
|
62
|
+
TLB Setup: You''ll need a TLB-Server in your network that is reachable over the
|
63
|
+
network from the machines you use to execute your project''s test-suite. Please
|
64
|
+
refer the TLB documentation for details.
|
65
|
+
|
66
|
+
|
64
67
|
-------------------------------------------------------------------------
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
68
|
+
|
69
|
+
Example(s): We maintain a directory of tlb-enabled dummy projects written in different
|
70
|
+
languages using different testing and build frameworks to help new TLB users get
|
71
|
+
started and provide users a working project to refer to while hooking up TLB on
|
72
|
+
their project(s).
|
73
|
+
|
74
|
+
Each of these projects have a shell script(named run_balanced.sh) that is meant
|
75
|
+
to demonstrate a typical tlb-enabled build(by starting a local tlb server, and executing
|
76
|
+
two partitions that run dummy tests locally). This script also starts its own server(so
|
77
|
+
you do not need to worry about the TLB server for trying it out).
|
78
|
+
|
79
|
+
We recommend playing with the configuration-variable values being set in the shell-script(s)
|
80
|
+
to understand the effect different values have on load-balancing/reordering behavior.
|
81
|
+
|
82
|
+
|
69
83
|
Examples archive is released along-with TLB and is available for download at http://code.google.com/p/tlb/downloads/list.
|
70
|
-
|
71
|
-
|
72
|
-
|
84
|
+
|
85
|
+
|
86
|
+
To execute the example project, drop into the example project directory(examples/rspec2_example
|
87
|
+
for instance) and invoke the ''./run_balanced.sh''.
|
88
|
+
|
89
|
+
|
73
90
|
-------------------------------------------------------------------------
|
91
|
+
|
74
92
|
Issue Tracker: http://code.google.com/p/tlb/issues/list
|
75
|
-
|
93
|
+
|
94
|
+
|
76
95
|
=========================================================================
|
77
96
|
|
78
|
-
|
97
|
+
'
|
98
|
+
rdoc_options:
|
79
99
|
- --charset=UTF-8
|
80
|
-
require_paths:
|
100
|
+
require_paths:
|
81
101
|
- testunit/lib
|
82
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
102
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
83
103
|
none: false
|
84
|
-
requirements:
|
104
|
+
requirements:
|
85
105
|
- - <
|
86
|
-
- !ruby/object:Gem::Version
|
87
|
-
version:
|
88
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
version: '1.9'
|
108
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
109
|
none: false
|
90
|
-
requirements:
|
91
|
-
- -
|
92
|
-
- !ruby/object:Gem::Version
|
93
|
-
version:
|
110
|
+
requirements:
|
111
|
+
- - ! '>='
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: '0'
|
94
114
|
requirements: []
|
95
|
-
|
96
115
|
rubyforge_project: tlb-rb
|
97
|
-
rubygems_version: 1.8.
|
116
|
+
rubygems_version: 1.8.10
|
98
117
|
signing_key:
|
99
118
|
specification_version: 3
|
100
|
-
summary: tlb-testunit18-0.3.
|
119
|
+
summary: tlb-testunit18-0.3.3
|
101
120
|
test_files: []
|
102
|
-
|