Sha256: 7dc8da9d3500e1d9b283cce9561bfdd6d9937369432c87e403c6c370908c1bd9

Contents?: true

Size: 1.34 KB

Versions: 4

Compression:

Stored size: 1.34 KB

Contents

Feature: discretionary
  As a CSL cite processor hacker
  I want the test discretionary_AuthorOnly to pass

  @citation @discretionary @citation-items
  Scenario: Author Only
    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>
        <layout prefix="(" suffix=")">
          <group delimiter=" ">
            <names font-style="italic" suffix="!" variable="author">
              <name />
            </names>
            <date variable="issued">
              <date-part name="year" />
            </date>
          </group>
        </layout>
      </citation>
    </style>
    """
    And the following input:
    """
    [{"author":[{"family":"Smith","given":"John","static-ordering":false}],"id":"ITEM-1","issued":{"date-parts":[["2005"]]},"title":"Book A","type":"book"},{"author":[{"family":"Jones","given":"Robert","static-ordering":false}],"id":"ITEM-2","issued":{"date-parts":[["2000"]]},"title":"Book B","type":"book"}]
    """
    When I cite the following items:
    """
    [[{"author-only":1,"id":"ITEM-1"}],[{"id":"ITEM-2"}]]
    """
    Then the results should be:
      | John Smith!  |
      | (<i>Robert Jones</i>! 2000) |

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
citeproc-1.0.7 features/discretionary/AuthorOnly.feature
citeproc-1.0.6 features/discretionary/AuthorOnly.feature
citeproc-1.0.5 features/discretionary/AuthorOnly.feature
citeproc-1.0.4 features/discretionary/AuthorOnly.feature