Sha256: 2edfd13fec5a248e71ee816bfdd71a0945e1c2f8fe6d3cafc7b7a773f22f7a9f
Contents?: true
Size: 1.82 KB
Versions: 4
Compression:
Stored size: 1.82 KB
Contents
Feature: disambiguate As a CSL cite processor hacker I want the test disambiguate_AllNamesGenerally to pass @citation @disambiguate Scenario: All Names Generally Given the following style: """ <style xmlns="http://purl.org/net/xbiblio/csl" class="note" version="1.0"> <info> <id /> <title /> <updated>2009-08-10T04:49:00+09:00</updated> </info> <citation disambiguate-add-givenname="true" disambiguate-add-year-suffix="true" givenname-disambiguation-rule="all-names"> <layout delimiter="; "> <names delimiter=", " variable="author"> <name and="text" delimiter=", " delimiter-precedes-last="never" form="short" initialize-with="." /> </names> <group prefix=" (" suffix=")"> <date variable="issued"> <date-part name="year" /> </date> <text variable="year-suffix" /> </group> </layout> </citation> </style> """ And the following input: """ [{"author":[{"family":"Asthma","given":"Albert","static-ordering":false},{"family":"Bronchitis","given":"Bosworth","static-ordering":false},{"family":"Cold","given":"Crispin","static-ordering":false}],"id":"ITEM-1","issued":{"date-parts":[["1980"]]},"title":"Book A","type":"book"},{"author":[{"family":"Asthma","given":"Albert","static-ordering":false},{"family":"Bronchitis","given":"Beauregarde","static-ordering":false},{"family":"Cold","given":"Odeous","static-ordering":false}],"id":"ITEM-2","issued":{"date-parts":[["1995"]]},"title":"Book B","type":"book"}] """ When I cite all items Then the result should be: """ Asthma, Bosworth Bronchitis and C. Cold (1980); Asthma, Beauregarde Bronchitis and O. Cold (1995) """
Version data entries
4 entries across 4 versions & 1 rubygems