Sha256: 8dad7cbcebd37d9f43078ceedb194a351fc3b3b611da1e29fcbaeaf9c61ca598

Contents?: true

Size: 1.4 KB

Versions: 4

Compression:

Stored size: 1.4 KB

Contents

Feature: sort
  As a CSL cite processor hacker
  I want the test sort_CiteGroupDelimiter to pass

  @citation @sort @citations
  Scenario: Cite Group Delimiter
    Given the following style:
    """
    <style 
          xmlns="http://purl.org/net/xbiblio/csl"
          class="in-text"
          version="1.0">
      <info>
        <id />
        <title />
        <updated>2009-08-10T04:49:00+09:00</updated>
      </info>
      <macro name="author">
        <names variable="author">
          <name form="short" />
        </names>
      </macro>
      <citation cite-group-delimiter=", ">
        <sort>
          <key variable="issued" />
        </sort>
        <layout delimiter="; ">
          <group delimiter=" ">
            <text macro="author" />
            <date form="text" variable="issued" date-parts="year"/>
          </group>
        </layout>
      </citation>
    </style>
    """
    And the following input:
    """
    [{"author":[{"family":"Aalto","given":"Alan"}],"id":"ITEM-1","issued":{"date-parts":[[2001]]},"type":"book"},{"author":[{"family":"Aalto","given":"Alan"}],"id":"ITEM-2","issued":{"date-parts":[[2000]]},"type":"book"},{"author":[{"family":"Banda","given":"Gino"}],"id":"ITEM-3","issued":{"date-parts":[[1999]]},"type":"book"}]
    """
    And I have a citations input
    When I cite all items
    Then the result should be:
    """
    >>[0] Banda 1999; Aalto 2000, Aalto 2001
    """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
citeproc-1.0.7 features/sort/CiteGroupDelimiter.feature
citeproc-1.0.6 features/sort/CiteGroupDelimiter.feature
citeproc-1.0.5 features/sort/CiteGroupDelimiter.feature
citeproc-1.0.4 features/sort/CiteGroupDelimiter.feature