rake_tasks 2.0.6 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/test/require.rb CHANGED
@@ -1,7 +1,6 @@
1
1
  require 'test/unit'
2
2
 
3
- require 'mocha'
4
- require 'fakefs/safe'
3
+ require 'mocha/setup'
5
4
 
6
5
  root = File.dirname(__FILE__)
7
6
  Dir["#{root}/support/*.rb"].each do |file|
File without changes
File without changes
@@ -1,119 +1,119 @@
1
- #--
2
- ################################################################################
3
- # Copyright (C) 2011 Travis Herrick #
4
- ################################################################################
5
- # #
6
- # \v^V,^!v\^/ #
7
- # ~% %~ #
8
- # { _ _ } #
9
- # ( * - ) #
10
- # | / | #
11
- # \ _, / #
12
- # \__.__/ #
13
- # #
14
- ################################################################################
15
- # This program is free software: you can redistribute it #
16
- # and/or modify it under the terms of the GNU Lesser General Public License #
17
- # as published by the Free Software Foundation, #
18
- # either version 3 of the License, or (at your option) any later version. #
19
- ################################################################################
20
- # This program is distributed in the hope that it will be useful, #
21
- # but WITHOUT ANY WARRANTY; #
22
- # without even the implied warranty of MERCHANTABILITY #
23
- # or FITNESS FOR A PARTICULAR PURPOSE. #
24
- # See the GNU Lesser General Public License for more details. #
25
- # #
26
- # You should have received a copy of the GNU Lesser General Public License #
27
- # along with this program. If not, see <http://www.gnu.org/licenses/>. #
28
- ################################################################################
29
- #++
30
-
31
- require_relative '../require'
32
-
33
- class DocUnitTest < Test::Unit::TestCase
34
- def setup
35
- @class = RakeTasks::Doc
36
- @gem = RakeTasks::Gem
37
- @spec_class = Gem::Specification
38
- stubs :gem_spec
39
- stubs :file?
40
- @spec = @gem.gem_spec
41
- @obj = @class.new(@gem)
42
- @readme = nil
43
- end
44
-
45
- def test_readme_basic_contents
46
- [
47
- spec[:title],
48
- 'Getting Started',
49
- 'Usage',
50
- 'Additional Notes',
51
- 'Additional Documentation',
52
- "gem install #{spec[:name]}",
53
- "gem '#{spec[:name]}', '~> #{spec[:version]}'",
54
- "require '#{spec[:name]}'",
55
- "rake rdoc:app",
56
- "the #{spec[:license]} license",
57
- ].each do |text|
58
- assert_contains readme, text
59
- end
60
- end
61
-
62
- def test_no_license_information
63
- @spec.expects(:licenses).with.returns([]).at_least_once
64
- assert_not_contains readme, ' license.'
65
- end
66
-
67
- ############################################################################
68
- private
69
- ############################################################################
70
-
71
- def expectations(key)
72
- case key
73
- when :file_list then
74
- Dir.expects(:[]).returns(['license/file1', 'license/MiT'])
75
- Dir.expects(:[]).returns(['license/file1.jpg', 'license/MiT.png'])
76
- end
77
- end
78
-
79
- def stubs(item)
80
- case item
81
- when :file? then File.stubs(:file? => true)
82
- when :spec
83
- gem_spec = mock.responds_like(@spec_class.new)
84
- gem_spec.stubs spec
85
- return gem_spec
86
- when :gem_spec
87
- @gem.stubs(:gem_spec => stubs(:spec))
88
- end
89
- end
90
-
91
- def assert_not_contains(text, snippet)
92
- assert !text.include?(snippet),
93
- "The specified text should not contain '#{snippet}'."
94
- end
95
-
96
- def assert_contains(text, snippet)
97
- assert text.include?(snippet),
98
- "The specified text does not contain '#{snippet}'."
99
- end
100
-
101
- def readme
102
- @readme ||= @obj.readme_contents
103
- end
104
-
105
- def spec
106
- {
107
- :name => 'test_gem',
108
- :title => 'TestGem',
109
- :version => '0.0.1',
110
- :licenses => ['MIT', 'GPL'],
111
- :license => 'MIT',
112
- :description =>
113
- %Q{
114
- A long explanation of what this thing can do.
115
- Yeah, it's cool.
116
- }.strip,
117
- }
118
- end
119
- end
1
+ #--
2
+ ################################################################################
3
+ # Copyright (C) 2011 Travis Herrick #
4
+ ################################################################################
5
+ # #
6
+ # \v^V,^!v\^/ #
7
+ # ~% %~ #
8
+ # { _ _ } #
9
+ # ( * - ) #
10
+ # | / | #
11
+ # \ _, / #
12
+ # \__.__/ #
13
+ # #
14
+ ################################################################################
15
+ # This program is free software: you can redistribute it #
16
+ # and/or modify it under the terms of the GNU Lesser General Public License #
17
+ # as published by the Free Software Foundation, #
18
+ # either version 3 of the License, or (at your option) any later version. #
19
+ ################################################################################
20
+ # This program is distributed in the hope that it will be useful, #
21
+ # but WITHOUT ANY WARRANTY; #
22
+ # without even the implied warranty of MERCHANTABILITY #
23
+ # or FITNESS FOR A PARTICULAR PURPOSE. #
24
+ # See the GNU Lesser General Public License for more details. #
25
+ # #
26
+ # You should have received a copy of the GNU Lesser General Public License #
27
+ # along with this program. If not, see <http://www.gnu.org/licenses/>. #
28
+ ################################################################################
29
+ #++
30
+
31
+ require_relative '../require'
32
+
33
+ class DocUnitTest < Test::Unit::TestCase
34
+ def setup
35
+ @class = RakeTasks::Doc
36
+ @gem = RakeTasks::Gem
37
+ @spec_class = Gem::Specification
38
+ stubs :gem_spec
39
+ stubs :file?
40
+ @spec = @gem.gem_spec
41
+ @obj = @class.new(@gem)
42
+ @readme = nil
43
+ end
44
+
45
+ def test_readme_basic_contents
46
+ [
47
+ spec[:title],
48
+ 'Getting Started',
49
+ 'Usage',
50
+ 'Additional Notes',
51
+ 'Additional Documentation',
52
+ "gem install #{spec[:name]}",
53
+ "gem '#{spec[:name]}', '~> #{spec[:version]}'",
54
+ "require '#{spec[:name]}'",
55
+ "rake rdoc:app",
56
+ "the #{spec[:license]} license",
57
+ ].each do |text|
58
+ assert_contains readme, text
59
+ end
60
+ end
61
+
62
+ def test_no_license_information
63
+ @spec.expects(:licenses).with.returns([]).at_least_once
64
+ assert_not_contains readme, ' license.'
65
+ end
66
+
67
+ ############################################################################
68
+ private
69
+ ############################################################################
70
+
71
+ def expectations(key)
72
+ case key
73
+ when :file_list then
74
+ Dir.expects(:[]).returns(['license/file1', 'license/MiT'])
75
+ Dir.expects(:[]).returns(['license/file1.jpg', 'license/MiT.png'])
76
+ end
77
+ end
78
+
79
+ def stubs(item)
80
+ case item
81
+ when :file? then File.stubs(:file? => true)
82
+ when :spec
83
+ gem_spec = mock.responds_like(@spec_class.new)
84
+ gem_spec.stubs spec
85
+ return gem_spec
86
+ when :gem_spec
87
+ @gem.stubs(:gem_spec => stubs(:spec))
88
+ end
89
+ end
90
+
91
+ def assert_not_contains(text, snippet)
92
+ assert !text.include?(snippet),
93
+ "The specified text should not contain '#{snippet}'."
94
+ end
95
+
96
+ def assert_contains(text, snippet)
97
+ assert text.include?(snippet),
98
+ "The specified text does not contain '#{snippet}'."
99
+ end
100
+
101
+ def readme
102
+ @readme ||= @obj.readme_contents.join("\n")
103
+ end
104
+
105
+ def spec
106
+ {
107
+ :name => 'test_gem',
108
+ :title => 'TestGem',
109
+ :version => '0.0.1',
110
+ :licenses => ['MIT', 'GPL'],
111
+ :license => 'MIT',
112
+ :description =>
113
+ %Q{
114
+ A long explanation of what this thing can do.
115
+ Yeah, it's cool.
116
+ }.strip,
117
+ }
118
+ end
119
+ end
@@ -36,11 +36,6 @@ class GemTest < Test::Unit::TestCase
36
36
  @spec_class = Gem::Specification
37
37
  end
38
38
 
39
- def teardown
40
- FakeFS::FileSystem.clear
41
- FakeFS.deactivate!
42
- end
43
-
44
39
  test '.gem_spec_file returns the gemspec file name' do
45
40
  expect :gemspec_file
46
41
  assert_equal gem_spec_file_name, @class.gem_spec_file
@@ -56,14 +51,14 @@ class GemTest < Test::Unit::TestCase
56
51
  assert_nil @class.gem_spec_file
57
52
  end
58
53
 
59
- test '.gem_file? returns true if the gem spec exists' do
54
+ test '.gemspec_file? returns true if the gem spec exists' do
60
55
  expect :gemspec_file
61
- assert @class.gem_file?
56
+ assert @class.gemspec_file?
62
57
  end
63
58
 
64
- test '.gem_file? returns false if the gem spec does not exist' do
59
+ test '.gemspec_file? returns false if the gem spec does not exist' do
65
60
  expect :gemspec_file, []
66
- assert !@class.gem_file?
61
+ assert !@class.gemspec_file?
67
62
  end
68
63
 
69
64
  test '.gem_spec expects to load a gem spec' do
@@ -106,64 +101,6 @@ class GemTest < Test::Unit::TestCase
106
101
  assert_nil @class.version(spec)
107
102
  end
108
103
 
109
- test '.version! sets the version in the gemspec file' do
110
- FakeFS.activate!
111
- expect :real_gemspec, '0.0.1'
112
- new_version = '1.2.3'
113
-
114
- @class.version! new_version
115
-
116
- assert_match(/ #{new_version}$/, @class.version)
117
- end
118
-
119
- test '.version! accepts the gemspec as a second parameter' do
120
- FakeFS.activate!
121
- expect :real_gemspec, '0.0.1'
122
- new_version = '1.2.3'
123
-
124
- gem_spec = @spec_class.load(gem_spec_file_name)
125
-
126
- @class.version! new_version, gem_spec
127
-
128
- assert_match(/ #{new_version}$/, @class.version)
129
- end
130
-
131
- [
132
- " s.version = '0.0.1'",
133
- " s.version='0.0.1'",
134
- " s.version = '0.0.1'",
135
- ' s.version = "0.0.1"',
136
- ' s.version ="0.0.1"',
137
- ].each do |version|
138
- test ".version! sets the version given a format of '#{version}'" do
139
- FakeFS.activate!
140
- expect :real_gemspec, '0.0.1'
141
-
142
- content = File.readlines(gem_spec_file_name)
143
- index = content.index { |l| l.match(/version = '/) }
144
- content[index] = version
145
-
146
- File.open(gem_spec_file_name, 'w') do |file|
147
- file.puts content
148
- end
149
-
150
- new_version = '12.3.10'
151
- @class.version! new_version
152
-
153
- gem_spec = @spec_class.load(gem_spec_file_name)
154
-
155
- assert_equal new_version, gem_spec.version.to_s,
156
- "The following format should be valid: '#{version}'"
157
- end
158
- end
159
-
160
- test '.version! does nothing given there is no gem spec' do
161
- FakeFS.activate!
162
- expect :no_gemspec
163
-
164
- assert_nothing_raised { @class.version! '1.0.0' }
165
- end
166
-
167
104
  ############################################################################
168
105
  private
169
106
  ############################################################################
@@ -172,18 +109,7 @@ class GemTest < Test::Unit::TestCase
172
109
  case method
173
110
  when :gemspec_file
174
111
  result ||= [gem_spec_file_name]
175
- Dir.expects(:[] => result).with('*.gemspec').at_least_once
176
- when :real_gemspec
177
- path = '/root/path/gems/test_gem'
178
- FileUtils.mkdir_p path
179
- Dir.chdir path
180
- File.open(gem_spec_file_name, 'w') do |file|
181
- file.puts gem_spec(result)
182
- end
183
- when :no_gemspec
184
- path = '/root/path/gems/test_gem'
185
- FileUtils.mkdir_p path
186
- Dir.chdir path
112
+ Dir.expects(:glob => result).with('*.gemspec').at_least_once
187
113
  end
188
114
  end
189
115
 
@@ -62,15 +62,7 @@ class ParserTest < Test::Unit::TestCase
62
62
 
63
63
  def test_summary
64
64
  summary_lines.each_value do |lines|
65
- lines[:in].each do |line|
66
- wrap_output { @obj.parse line }
67
- end
68
-
69
- reset_io
70
- wrap_output { @obj.summarize }
71
- @obj = @class.new
72
-
73
- assert_equal lines[:out], out
65
+ check_lines lines
74
66
  end
75
67
  end
76
68
 
@@ -108,7 +100,8 @@ class ParserTest < Test::Unit::TestCase
108
100
 
109
101
  def printable_lines
110
102
  [
111
- "Using /home/travis/.rvm/gems/ruby-1.9.3-p0 with gemset rake_tasks_test\n",
103
+ "Using /home/travis/.rvm/gems/ruby-1.9.3-p0 " +
104
+ "with gemset rake_tasks_test\n",
112
105
  "...................................\n",
113
106
  "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE\n",
114
107
  "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF\n",
@@ -127,4 +120,16 @@ class ParserTest < Test::Unit::TestCase
127
120
  "\n",
128
121
  ]
129
122
  end
123
+
124
+ def check_lines(lines)
125
+ lines[:in].each do |line|
126
+ wrap_output { @obj.parse line }
127
+ end
128
+
129
+ reset_io
130
+ wrap_output { @obj.summarize }
131
+ @obj = @class.new
132
+
133
+ assert_equal lines[:out], out
134
+ end
130
135
  end
data/todo.md ADDED
@@ -0,0 +1,4 @@
1
+ TODO
2
+ ====
3
+
4
+ * Use a class method on Doc to specify readme name for consistency.
metadata CHANGED
@@ -1,124 +1,166 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake_tasks
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.6
5
- prerelease:
4
+ version: 3.0.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Travis Herrick
9
8
  autorequire:
10
9
  bindir: bin
11
- cert_chain: []
12
- date: 2012-06-18 00:00:00.000000000 Z
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDcjCCAlqgAwIBAgIBATANBgkqhkiG9w0BAQUFADA/MREwDwYDVQQDDAh0dGhl
14
+ dG9hZDEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPyLGQBGRYDY29t
15
+ MCAXDTE0MDgwOTAzNTY0OFoYDzIxMTQwODA5MDM1NjQ4WjA/MREwDwYDVQQDDAh0
16
+ dGhldG9hZDEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPyLGQBGRYD
17
+ Y29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6kkcaif6ZkAIw6Ki
18
+ 3R6zqLB/psWS+sKuL8W9TqQ6Qreu3sz9ZhSHpN5e1ZaUSMq0klkIIW5f8vN3n58/
19
+ SwnBLCFIrYKGeo37Sknu5w1j4PXdHY4ggsXPIvZ93/NuF1sobsgaAO4OvZX7chzx
20
+ boZF1WdB6LitRK4894x+X2tD3/z24ywJ7oZoZ3iM8YP6l2ch6D96ur3DNXMRjuMl
21
+ edgLQV6Htu3sueDm2J4mX2f9WKbuRVtP3crD/DU4IzM924tnLq4aH33DcQbRK+Go
22
+ m8eM/lMOs8Vy6woPRdUyH3MhalL1z7jv1AO74q8GCQK2jIoIYA492rzEWu4Nakc5
23
+ rGrpHQIDAQABo3cwdTAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU
24
+ lb7h/PSpwDA3wstwt75LFVNU7swwHQYDVR0RBBYwFIESdHRoZXRvYWRAZ21haWwu
25
+ Y29tMB0GA1UdEgQWMBSBEnR0aGV0b2FkQGdtYWlsLmNvbTANBgkqhkiG9w0BAQUF
26
+ AAOCAQEAU0AUOukpg8PTuSO6fxg5AYXzov/un1wz7pX9fvPodXLtb1+NdUl1rWjc
27
+ vlcV1dy0uIcwP1Q/WKL8AYuwmNSKgI24T0SqQl7gw/1ctMbqwhB/SXkLvB84a/9R
28
+ aWrUh9/kRyfTkrLS4sltuyGhGZPYGFqFeOOXfM2c43/3qwjHU0rJNPEf2fAoZG9E
29
+ at+NN+vUGIi00xlgYc9uzmTlFXyr3tfhYhrIZnyd02xsDkN3gMbs/KTGYPQYMTZQ
30
+ dFfJVAFuyqXRLmrl1YroL9qLu8nKUUiKEcrRbc44Bd84Ti0VdHms+c7SZXqW+VUV
31
+ kMsvl643w+TJ2BmsFnWZ4JMvHdZ8oQ==
32
+ -----END CERTIFICATE-----
33
+ date: 2015-01-02 00:00:00.000000000 Z
13
34
  dependencies:
35
+ - !ruby/object:Gem::Dependency
36
+ name: rspec
37
+ requirement: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ type: :development
43
+ prerelease: false
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
14
49
  - !ruby/object:Gem::Dependency
15
50
  name: mocha
16
51
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
52
  requirements:
19
- - - ~>
53
+ - - ">="
20
54
  - !ruby/object:Gem::Version
21
- version: 0.11.4
55
+ version: '0'
22
56
  type: :development
23
57
  prerelease: false
24
58
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
59
  requirements:
27
- - - ~>
60
+ - - ">="
28
61
  - !ruby/object:Gem::Version
29
- version: 0.11.4
62
+ version: '0'
30
63
  - !ruby/object:Gem::Dependency
31
- name: fakefs
64
+ name: cane
32
65
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
66
  requirements:
35
- - - ~>
67
+ - - ">="
36
68
  - !ruby/object:Gem::Version
37
- version: 0.4.0
69
+ version: '0'
38
70
  type: :development
39
71
  prerelease: false
40
72
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
73
  requirements:
43
- - - ~>
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ - !ruby/object:Gem::Dependency
78
+ name: faker
79
+ requirement: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
44
82
  - !ruby/object:Gem::Version
45
- version: 0.4.0
46
- description: ! 'RakeTasks provides basic rake tasks for generating documentation,
47
-
83
+ version: '0'
84
+ type: :development
85
+ prerelease: false
86
+ version_requirements: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ description: |-
92
+ RakeTasks provides basic rake tasks for generating documentation,
48
93
  building and installing gems, and running tests.
49
-
50
- It will also load additional rake tasks if they are in a folder named ''tasks''.
51
-
52
- mmmm yummy'
94
+ It will also load additional rake tasks if they are in a folder named 'tasks'.
95
+ mmmm yummy
53
96
  email: tthetoad@gmail.com
54
97
  executables: []
55
98
  extensions: []
56
99
  extra_rdoc_files:
57
- - README.md
100
+ - readme.markdown
58
101
  - license/gplv3.md
59
102
  - license/lgplv3.md
60
103
  files:
61
- - rakefile
62
104
  - Gemfile
63
- - README.md
64
- - rake_tasks.gemspec
65
- - lib/rake_tasks/rdoc.rb
66
- - lib/rake_tasks/gem.rb
67
- - lib/rake_tasks/lib/gem.rb
68
- - lib/rake_tasks/lib/tests.rb
69
- - lib/rake_tasks/lib/doc.rb
70
- - lib/rake_tasks/lib/parser.rb
71
- - lib/rake_tasks/doc.rb
72
- - lib/rake_tasks/test.rb
105
+ - lib/base/util.rb
73
106
  - lib/rake_tasks.rb
74
- - lib/rake_tasks/lib/rubies.sh
75
- - lib/rake_tasks/lib/bundle_install.sh
107
+ - lib/rake_tasks/doc.rb
108
+ - lib/rake_tasks/gem.rb
109
+ - lib/rake_tasks/parser.rb
110
+ - lib/rake_tasks/tasks/cane.rb
111
+ - lib/rake_tasks/tasks/checksum.rb
112
+ - lib/rake_tasks/tasks/doc.rb
113
+ - lib/rake_tasks/tasks/gem.rb
114
+ - lib/rake_tasks/tasks/rdoc.rb
115
+ - lib/rake_tasks/tasks/test.rb
116
+ - lib/rake_tasks/tests.rb
76
117
  - license/gplv3.md
77
118
  - license/lgplv3.md
78
119
  - license/lgplv3.png
79
- - test/support/tunit_test_case.rb
80
- - test/support/rake_tasks_shared.rb
81
- - test/require.rb
82
- - test/unit/doc_unit_test.rb
83
- - test/unit/parser_test.rb
84
- - test/unit/gem_test.rb
85
- - test/unit/tests_unit_test.rb
120
+ - rake_tasks.gemspec
121
+ - rakefile
122
+ - readme.markdown
86
123
  - test/integration/doc_integration_test.rb
87
124
  - test/integration/gem_integration_test.rb
88
125
  - test/integration/tests_integration_test.rb
126
+ - test/require.rb
127
+ - test/support/rake_tasks_shared.rb
128
+ - test/support/tunit_test_case.rb
129
+ - test/unit/doc_unit_test.rb
130
+ - test/unit/gem_test.rb
131
+ - test/unit/parser_test.rb
132
+ - todo.md
89
133
  homepage: http://www.bitbucket.org/ToadJamb/gems_rake_tasks
90
134
  licenses:
91
135
  - LGPLv3
136
+ metadata: {}
92
137
  post_install_message:
93
138
  rdoc_options: []
94
139
  require_paths:
95
140
  - lib
96
141
  required_ruby_version: !ruby/object:Gem::Requirement
97
- none: false
98
142
  requirements:
99
- - - ! '>='
143
+ - - ">="
100
144
  - !ruby/object:Gem::Version
101
145
  version: '0'
102
146
  required_rubygems_version: !ruby/object:Gem::Requirement
103
- none: false
104
147
  requirements:
105
- - - ! '>='
148
+ - - ">="
106
149
  - !ruby/object:Gem::Version
107
150
  version: '0'
108
151
  requirements: []
109
152
  rubyforge_project:
110
- rubygems_version: 1.8.24
153
+ rubygems_version: 2.2.2
111
154
  signing_key:
112
- specification_version: 3
155
+ specification_version: 4
113
156
  summary: Basic rake tasks. You know you want some.
114
157
  test_files:
115
- - test/support/tunit_test_case.rb
116
- - test/support/rake_tasks_shared.rb
117
- - test/require.rb
118
- - test/unit/doc_unit_test.rb
119
- - test/unit/parser_test.rb
120
- - test/unit/gem_test.rb
121
- - test/unit/tests_unit_test.rb
122
158
  - test/integration/doc_integration_test.rb
123
159
  - test/integration/gem_integration_test.rb
124
160
  - test/integration/tests_integration_test.rb
161
+ - test/require.rb
162
+ - test/support/rake_tasks_shared.rb
163
+ - test/support/tunit_test_case.rb
164
+ - test/unit/doc_unit_test.rb
165
+ - test/unit/gem_test.rb
166
+ - test/unit/parser_test.rb