Sha256: 883ba92442f6a3e50c0c5ea68ba5071d4d941d0b20a4d76abc2495b4263ad55c

Contents?: true

Size: 958 Bytes

Versions: 4

Compression:

Stored size: 958 Bytes

Contents

Feature: name
  As a CSL cite processor hacker
  I want the test name_EditorTranslatorSameWithTerm to pass

  @citation @name
  Scenario: Editor Translator Same With 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>
      <citation>
        <layout>
          <names variable="editor translator" delimiter=", ">
            <name />
            <label form="short" prefix=" (" suffix=")"/>
          </names>
        </layout>
      </citation>
    </style>
    """
    And the following input:
    """
    [{"editor":[{"family":"Doe","given":"John"}],"id":"ITEM-1","translator":[{"family":"Doe","given":"John"}],"type":"book"}]
    """
    When I cite all items
    Then the result should be:
    """
    John Doe (ed. &amp; tran.)
    """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
citeproc-1.0.7 features/name/EditorTranslatorSameWithTerm.feature
citeproc-1.0.6 features/name/EditorTranslatorSameWithTerm.feature
citeproc-1.0.5 features/name/EditorTranslatorSameWithTerm.feature
citeproc-1.0.4 features/name/EditorTranslatorSameWithTerm.feature