summaryrefslogtreecommitdiff
path: root/test/rdoc
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-05 07:07:28 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-05 07:07:28 +0000
commit16c34f9df081765042a37e02bfbc949329fb78f8 (patch)
treea4ef7e9411d5f754ae8555eda828be6386e375d8 /test/rdoc
parent8d7e3c6abac0227a6bdc4990893a3e740f9df795 (diff)
* lib/rdoc/parser/changelog.rb: Parse more ChangeLog file variations.
* test/rdoc/test_rdoc_parser_changelog.rb: Test for above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38208 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rdoc')
-rw-r--r--test/rdoc/test_rdoc_parser_changelog.rb92
1 files changed, 72 insertions, 20 deletions
diff --git a/test/rdoc/test_rdoc_parser_changelog.rb b/test/rdoc/test_rdoc_parser_changelog.rb
index 597b395a9f..be3b7145f3 100644
--- a/test/rdoc/test_rdoc_parser_changelog.rb
+++ b/test/rdoc/test_rdoc_parser_changelog.rb
@@ -28,6 +28,38 @@ class TestRDocParserChangeLog < RDoc::TestCase
assert_equal parser, parser.can_parse('ChangeLog')
assert_equal parser, parser.can_parse(@tempfile.path)
+
+ assert_equal RDoc::Parser::Ruby, parser.can_parse('ChangeLog.rb')
+ end
+
+ def test_continue_entry_body
+ parser = util_parser
+
+ entry_body = ['a']
+
+ parser.continue_entry_body entry_body, 'b'
+
+ assert_equal ['a b'], entry_body
+ end
+
+ def test_continue_entry_body_empty
+ parser = util_parser
+
+ entry_body = []
+
+ parser.continue_entry_body entry_body, ''
+
+ assert_empty entry_body
+ end
+
+ def test_continue_entry_body_function
+ parser = util_parser
+
+ entry_body = ['file: (func1)']
+
+ parser.continue_entry_body entry_body, '(func2): blah'
+
+ assert_equal ['file: (func1, func2): blah'], entry_body
end
def test_create_document
@@ -60,8 +92,8 @@ class TestRDocParserChangeLog < RDoc::TestCase
blank_line,
head(3, 'Mon Dec 3 20:28:02 2012 Koichi Sasada <ko1@atdot.net>'),
blank_line,
- list(:NOTE, item('e', para('five')), item('f', para('six'))),
- )
+ list(:NOTE, item('e', para('five')), item('f', para('six'))))
+
expected.file = @top_level
assert_equal expected, parser.create_document(groups)
@@ -110,14 +142,13 @@ class TestRDocParserChangeLog < RDoc::TestCase
def test_group_entries
parser = util_parser
- entries = {
- 'Tue Dec 4 08:33:46 2012 Eric Hodel <drbrain@segment7.net>' =>
- %w[one two],
- 'Tue Dec 4 08:32:10 2012 Eric Hodel <drbrain@segment7.net>' =>
- %w[three four],
- 'Mon Dec 3 20:28:02 2012 Koichi Sasada <ko1@atdot.net>' =>
- %w[five six],
- }
+ entries = [
+ [ 'Tue Dec 4 08:33:46 2012 Eric Hodel <drbrain@segment7.net>',
+ %w[one two]],
+ [ 'Tue Dec 4 08:32:10 2012 Eric Hodel <drbrain@segment7.net>',
+ %w[three four]],
+ [ 'Mon Dec 3 20:28:02 2012 Koichi Sasada <ko1@atdot.net>',
+ %w[five six]]]
expected = {
'2012-12-04' => [
@@ -150,16 +181,37 @@ Other note that will be ignored
ChangeLog
- expected = {
- 'Tue Dec 4 08:33:46 2012 Eric Hodel <drbrain@segment7.net>' => [
- 'README.EXT: Converted to RDoc format',
- 'README.EXT.ja: ditto',
- ],
- 'Mon Dec 3 20:28:02 2012 Koichi Sasada <ko1@atdot.net>' => [
- 'compile.c (iseq_specialized_instruction): change condition of ' +
- 'using `opt_send_simple\'. More method invocations can be simple.',
- ],
- }
+ expected = [
+ [ 'Tue Dec 4 08:33:46 2012 Eric Hodel <drbrain@segment7.net>',
+ [ 'README.EXT: Converted to RDoc format',
+ 'README.EXT.ja: ditto']],
+ [ 'Mon Dec 3 20:28:02 2012 Koichi Sasada <ko1@atdot.net>',
+ [ 'compile.c (iseq_specialized_instruction): change condition of ' +
+ 'using `opt_send_simple\'. More method invocations can be simple.']]]
+
+ assert_equal expected, parser.parse_entries
+ end
+
+ def test_parse_entries_gnu
+ parser = util_parser <<-ChangeLog
+1998-08-17 Richard Stallman <rms@gnu.org>
+
+* register.el (insert-register): Return nil.
+(jump-to-register): Likewise.
+
+* sort.el (sort-subr): Return nil.
+
+* keyboard.c (menu_bar_items, tool_bar_items)
+(Fexecute_extended_command): Deal with 'keymap' property.
+ ChangeLog
+
+ expected = [
+ [ '1998-08-17 Richard Stallman <rms@gnu.org>',
+ [ 'register.el (insert-register): Return nil.',
+ '(jump-to-register): Likewise.',
+ 'sort.el (sort-subr): Return nil.',
+ 'keyboard.c (menu_bar_items, tool_bar_items, ' +
+ 'Fexecute_extended_command): Deal with \'keymap\' property.']]]
assert_equal expected, parser.parse_entries
end