Sha256: 08eb6801241d9530df508bc2239718abba64a5072b0e763815e8f80ae34b4796

Contents?: true

Size: 1.38 KB

Versions: 4

Compression:

Stored size: 1.38 KB

Contents

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

  @citation @discretionary @citation-items
  Scenario: Citation Number Author Only Then Suppress Author
    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 font-style="italic">
          <text prefix="[" suffix="]" variable="citation-number" />
        </layout>
      </citation>
      <bibliography>
        <layout>
          <text variable="title" />
        </layout>
      </bibliography>
    </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-1","suppress-author":1}],[{"id":"ITEM-2"}]]
    """
    Then the results should be:
      | Reference [1]  |
      |                |
      | <i>[2]</i>     |

Version data entries

4 entries across 4 versions & 1 rubygems

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