Sha256: 93fa2626a06475bc3aa18ce69eb42b4e118fb001597a69d542d8444c5d39b863

Contents?: true

Size: 1001 Bytes

Versions: 4

Compression:

Stored size: 1001 Bytes

Contents

Feature: locale
  As a CSL cite processor hacker
  I want the test locale_ForceEmptyEtAlTerm to pass

  @citation @locale
  Scenario: Force Empty Et Al Term
    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>
      <locale>
        <terms>
          <term name="et-al"></term>
        </terms>
      </locale>
      <citation et-al-min="3" et-al-use-first="1">
        <layout>
          <names variable="author">
            <name />
          </names>
        </layout>
      </citation>
    </style>
    """
    And the following input:
    """
    [{"author":[{"family":"Doe","given":"John"},{"family":"Roe","given":"Jane"},{"family":"Noakes","given":"Richard"}],"id":"ITEM-1","type":"book"}]
    """
    When I cite all items
    Then the result should be:
    """
    John Doe
    """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
citeproc-1.0.7 features/locale/ForceEmptyEtAlTerm.feature
citeproc-1.0.6 features/locale/ForceEmptyEtAlTerm.feature
citeproc-1.0.5 features/locale/ForceEmptyEtAlTerm.feature
citeproc-1.0.4 features/locale/ForceEmptyEtAlTerm.feature