Sha256: 24937165f0a125f5e648dec37f5ff1ff1a6efaeef4bf978caae2fd9da4ed78cc

Contents?: true

Size: 861 Bytes

Versions: 4

Compression:

Stored size: 861 Bytes

Contents

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

  @citation @name
  Scenario: Romanian Two
    Given the following style:
    """
    <style 
          xmlns="http://purl.org/net/xbiblio/csl"
          class="note"
          version="1.0"
          default-locale="ro-RO">
      <info>
        <id />
        <title />
        <updated>2009-08-10T04:49:00+09:00</updated>
      </info>
      <citation>
        <layout>
          <names variable="author">
            <name and="text"/>
          </names>
        </layout>
      </citation>
    </style>
    """
    And the following input:
    """
    [{"author":[{"family":"Doe","given":"John"},{"family":"Roe","given":"Jane"}],"id":"ITEM-1","type":"book"}]
    """
    When I cite all items
    Then the result should be:
    """
    John Doe și Jane Roe
    """

Version data entries

4 entries across 4 versions & 1 rubygems

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