Sha256: eb8a77116585f5fe45e606eb2234d87c031455a4b1210647e35e9c37ee9c9753
Contents?: true
Size: 1.69 KB
Versions: 4
Compression:
Stored size: 1.69 KB
Contents
Feature: integration As a CSL cite processor hacker I want the test integration_YearSuffixOnOffOn to pass @citation @integration @citations Scenario: Year Suffix On Off On 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 et-al-min="3" et-al-use-first="1" disambiguate-add-names="true" disambiguate-add-givenname="true" disambiguate-add-year-suffix="true"> <layout delimiter="; "> <group delimiter=" "> <names delimiter=", " variable="author"> <name and="symbol" delimiter-precedes-last="never" form="short"/> </names> <date variable="issued" prefix="(" suffix=")"> <date-part name="year"/> </date> </group> </layout> </citation> </style> """ And the following input: """ [{"author":[{"family":"Smith","given":"John"}],"id":"ITEM-1","issued":{"date-parts":[[1986]]},"type":"book"},{"author":[{"family":"Smith","given":"John"}],"id":"ITEM-2","issued":{"date-parts":[[1986]]},"type":"book"},{"author":[{"family":"Smith","given":"John"}],"id":"ITEM-3","issued":{"date-parts":[[1986]]},"type":"book"},{"author":[{"family":"Smith","given":"John"}],"id":"ITEM-4","issued":{"date-parts":[[1986]]},"type":"book"}] """ And I have a citations input When I cite all items Then the result should be: """ >>[0] Smith (1986a); Smith (1986b); Smith (1986c); Smith (1986d) """
Version data entries
4 entries across 4 versions & 1 rubygems