Sha256: f92a1133f468bf221d472da4454ef4e8f5d5d7f2cee6e9f7c0d9385b693e99a3

Contents?: true

Size: 899 Bytes

Versions: 4

Compression:

Stored size: 899 Bytes

Contents

Feature: plural
  As a CSL cite processor hacker
  I want the test plural_LabelForced to pass

  @citation @plural @citations
  Scenario: Label Forced
    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>
          <group delimiter=" ">
            <label variable="locator" plural="never" form="short"/>
            <text variable="locator"/>
          </group>
        </layout>
      </citation>
    </style>
    """
    And the following input:
    """
    [{"id":"ITEM-1","title":"His Anonymous Life","type":"book"}]
    """
    And I have a citations input
    When I cite all items
    Then the result should be:
    """
    >>[0] p. 32–34
    """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
citeproc-1.0.7 features/plural/LabelForced.feature
citeproc-1.0.6 features/plural/LabelForced.feature
citeproc-1.0.5 features/plural/LabelForced.feature
citeproc-1.0.4 features/plural/LabelForced.feature