diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2017-03-30 23:52:39 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-30 23:52:39 -0600 |
| commit | f5e9c0418cbabea3049e8818b796145f3c0d658f (patch) | |
| tree | c5f92a0e60f30a7afdaa848de6bc7c009ffcb59b /test/parser_test.rb | |
| parent | 966137fb3b375527f80998bbcb9d7e05bc135cf9 (diff) | |
resolves #663 don't mangle compound names when document has multiple authors (PR #2104)
- when reparsing overrides; reconstruct compound names if necessary
- add test for multiple authors with compound names
Diffstat (limited to 'test/parser_test.rb')
| -rw-r--r-- | test/parser_test.rb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/parser_test.rb b/test/parser_test.rb index 6caab147..89108043 100644 --- a/test/parser_test.rb +++ b/test/parser_test.rb @@ -464,6 +464,34 @@ context "Parser" do assert_equal 'Scherer, Jr.', doc.attributes['lastname'] end + test 'does not drop name joiner when using multiple authors' do + input = <<-EOS +Kismet Chameleon; Lazarus het_Draeke + EOS + doc = empty_document + parse_header_metadata input, doc + assert_equal 2, doc.attributes['authorcount'] + assert_equal 'Kismet Chameleon, Lazarus het Draeke', doc.attributes['authors'] + assert_equal 'Kismet Chameleon', doc.attributes['author_1'] + assert_equal 'Lazarus het Draeke', doc.attributes['author_2'] + assert_equal 'het Draeke', doc.attributes['lastname_2'] + end + + test 'allows authors to be overridden using explicit author attributes' do + input = <<-EOS +Kismet Chameleon; Johnny Bravo; Lazarus het_Draeke +:author_2: Danger Mouse + EOS + doc = empty_document + parse_header_metadata input, doc + assert_equal 3, doc.attributes['authorcount'] + assert_equal 'Kismet Chameleon, Danger Mouse, Lazarus het Draeke', doc.attributes['authors'] + assert_equal 'Kismet Chameleon', doc.attributes['author_1'] + assert_equal 'Danger Mouse', doc.attributes['author_2'] + assert_equal 'Lazarus het Draeke', doc.attributes['author_3'] + assert_equal 'het Draeke', doc.attributes['lastname_3'] + end + test "parse rev number date remark" do input = <<-EOS Ryan Waldron |
