Sha256: 2714dc1e3e9a83d517adbfb9c9ffd0ca3dbfeb2f755fdaa6a3cb5eadf75b9357

Contents?: true

Size: 1.1 KB

Versions: 4

Compression:

Stored size: 1.1 KB

Contents

Feature: disambiguate
  As a CSL cite processor hacker
  I want the test disambiguate_Trigraph to pass

  @citation @disambiguate @citations
  Scenario: Trigraph
    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-year-suffix="true">
        <layout>
          <text variable="citation-label" />
        </layout>
      </citation>
    </style>
    """
    And the following input:
    """
    [{"author":[{"family":"Aalto","given":"Alan"}],"id":"ITEM-1","issued":{"date-parts":[[2002]]},"type":"book"},{"author":[{"family":"Aalto","given":"Alan"}],"id":"ITEM-2","issued":{"date-parts":[[2002]]},"type":"book"},{"author":[{"family":"Aalto","given":"Alan"}],"id":"ITEM-3","issued":{"date-parts":[[2002]]},"type":"book"}]
    """
    And I have a citations input
    When I cite all items
    Then the result should be:
    """
    ..[0] Aalt02a
    ..[1] Aalt02b
    >>[2] Aalt02c
    """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
citeproc-1.0.7 features/disambiguate/Trigraph.feature
citeproc-1.0.6 features/disambiguate/Trigraph.feature
citeproc-1.0.5 features/disambiguate/Trigraph.feature
citeproc-1.0.4 features/disambiguate/Trigraph.feature