test-unit 2.0.9 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +56 -0
- data/GPL +340 -0
- data/History.txt +7 -3
- data/Manifest.txt +27 -2
- data/PSFL +271 -0
- data/README.txt +18 -0
- data/Rakefile +18 -5
- data/html/bar.png +0 -0
- data/html/bar.svg +153 -0
- data/html/developer.png +0 -0
- data/html/developer.svg +469 -0
- data/html/famfamfam-logo.png +0 -0
- data/html/favicon.ico +0 -0
- data/html/favicon.png +0 -0
- data/html/favicon.svg +82 -0
- data/html/heading-mark.png +0 -0
- data/html/heading-mark.svg +393 -0
- data/html/index.html +235 -13
- data/html/index.html.ja +258 -15
- data/html/install.png +0 -0
- data/html/install.svg +636 -0
- data/html/jp.png +0 -0
- data/html/kinotan-failure.png +0 -0
- data/html/kinotan-pass.png +0 -0
- data/html/logo.png +0 -0
- data/html/logo.svg +483 -0
- data/html/reference.png +0 -0
- data/html/rubyforge.png +0 -0
- data/html/tango-logo.png +0 -0
- data/html/test-unit.css +339 -0
- data/html/tutorial.png +0 -0
- data/html/tutorial.svg +559 -0
- data/html/us.png +0 -0
- data/lib/test/unit.rb +6 -1
- data/lib/test/unit/assertions.rb +36 -0
- data/lib/test/unit/autorunner.rb +5 -2
- data/lib/test/unit/collector/load.rb +1 -1
- data/lib/test/unit/color-scheme.rb +1 -1
- data/lib/test/unit/diff.rb +7 -0
- data/lib/test/unit/testcase.rb +5 -0
- data/lib/test/unit/testresult.rb +34 -2
- data/lib/test/unit/ui/console/testrunner.rb +9 -45
- data/lib/test/unit/ui/tap/testrunner.rb +0 -9
- data/lib/test/unit/ui/testrunner.rb +25 -0
- data/lib/test/unit/version.rb +1 -1
- data/test/test-color-scheme.rb +1 -1
- data/test/test_assertions.rb +27 -3
- metadata +53 -14
- data/html/classic.html +0 -15
- data/html/test-unit-classic.png +0 -0
metadata
CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 2
|
7
|
+
- 1
|
7
8
|
- 0
|
8
|
-
|
9
|
-
version: 2.0.9
|
9
|
+
version: 2.1.0
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Kouhei Sutou
|
@@ -15,11 +15,11 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-
|
18
|
+
date: 2010-07-17 00:00:00 +09:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
|
-
name:
|
22
|
+
name: rubyforge
|
23
23
|
prerelease: false
|
24
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
@@ -27,11 +27,25 @@ dependencies:
|
|
27
27
|
- !ruby/object:Gem::Version
|
28
28
|
segments:
|
29
29
|
- 2
|
30
|
-
- 4
|
31
30
|
- 0
|
32
|
-
|
31
|
+
- 4
|
32
|
+
version: 2.0.4
|
33
33
|
type: :development
|
34
34
|
version_requirements: *id001
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: hoe
|
37
|
+
prerelease: false
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
segments:
|
43
|
+
- 2
|
44
|
+
- 6
|
45
|
+
- 1
|
46
|
+
version: 2.6.1
|
47
|
+
type: :development
|
48
|
+
version_requirements: *id002
|
35
49
|
description: |-
|
36
50
|
Test::Unit 2.x - Improved version of Test::Unit bundled in
|
37
51
|
Ruby 1.8.x.
|
@@ -51,16 +65,41 @@ extra_rdoc_files:
|
|
51
65
|
- Manifest.txt
|
52
66
|
- README.txt
|
53
67
|
files:
|
68
|
+
- COPYING
|
69
|
+
- GPL
|
54
70
|
- History.txt
|
55
71
|
- Manifest.txt
|
72
|
+
- PSFL
|
56
73
|
- README.txt
|
57
74
|
- Rakefile
|
58
75
|
- TODO
|
59
76
|
- bin/testrb
|
60
|
-
- html/
|
77
|
+
- html/bar.png
|
78
|
+
- html/bar.svg
|
79
|
+
- html/developer.png
|
80
|
+
- html/developer.svg
|
81
|
+
- html/famfamfam-logo.png
|
82
|
+
- html/favicon.ico
|
83
|
+
- html/favicon.png
|
84
|
+
- html/favicon.svg
|
85
|
+
- html/heading-mark.png
|
86
|
+
- html/heading-mark.svg
|
61
87
|
- html/index.html
|
62
88
|
- html/index.html.ja
|
63
|
-
- html/
|
89
|
+
- html/install.png
|
90
|
+
- html/install.svg
|
91
|
+
- html/jp.png
|
92
|
+
- html/kinotan-failure.png
|
93
|
+
- html/kinotan-pass.png
|
94
|
+
- html/logo.png
|
95
|
+
- html/logo.svg
|
96
|
+
- html/reference.png
|
97
|
+
- html/rubyforge.png
|
98
|
+
- html/tango-logo.png
|
99
|
+
- html/test-unit.css
|
100
|
+
- html/tutorial.png
|
101
|
+
- html/tutorial.svg
|
102
|
+
- html/us.png
|
64
103
|
- images/color-diff.png
|
65
104
|
- lib/test/unit.rb
|
66
105
|
- lib/test/unit/assertionfailederror.rb
|
@@ -167,14 +206,14 @@ signing_key:
|
|
167
206
|
specification_version: 3
|
168
207
|
summary: Test::Unit 2.x - Improved version of Test::Unit bundled in Ruby 1.8.x
|
169
208
|
test_files:
|
209
|
+
- test/ui/test_testrunmediator.rb
|
210
|
+
- test/test_testresult.rb
|
170
211
|
- test/test_failure.rb
|
171
|
-
- test/
|
212
|
+
- test/test_testsuite.rb
|
213
|
+
- test/collector/test_objectspace.rb
|
214
|
+
- test/collector/test_dir.rb
|
172
215
|
- test/util/test_backtracefilter.rb
|
173
216
|
- test/util/test_observable.rb
|
174
|
-
- test/
|
217
|
+
- test/util/test_procwrapper.rb
|
175
218
|
- test/test_error.rb
|
176
|
-
- test/ui/test_testrunmediator.rb
|
177
|
-
- test/collector/test_dir.rb
|
178
|
-
- test/collector/test_objectspace.rb
|
179
|
-
- test/test_testresult.rb
|
180
219
|
- test/test_assertions.rb
|
data/html/classic.html
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<title>Test::Unit (Classic)</title>
|
5
|
-
</head>
|
6
|
-
<body bgcolor="red">
|
7
|
-
<p style="text-align: center">
|
8
|
-
<img height="161" width="308" src="test-unit-classic.png">
|
9
|
-
<br>
|
10
|
-
<br>
|
11
|
-
<br>
|
12
|
-
Read the <a href="classic/test-unit/">rdoc</a>
|
13
|
-
</p>
|
14
|
-
</body>
|
15
|
-
</html>
|
data/html/test-unit-classic.png
DELETED
Binary file
|