Sha256: 6cecf9ef13ab2069df97549017c517feea2a7d74742e54574dba45b25e5e8f9f

Contents?: true

Size: 818 Bytes

Versions: 4

Compression:

Stored size: 818 Bytes

Contents

Feature: group
  As a CSL cite processor hacker
  I want the test group_ShortOutputOnly to pass

  @citation @group
  Scenario: Short Output Only
    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>
    		<text variable="title" form="short"/>
          </group>
        </layout>
      </citation>
    </style>
    """
    And the following input:
    """
    [{"container-title":"my container title","id":"ITEM-1","shortTitle":"something","type":"manuscript"}]
    """
    When I cite all items
    Then the result should be:
    """
    something
    """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
citeproc-1.0.7 features/group/ShortOutputOnly.feature
citeproc-1.0.6 features/group/ShortOutputOnly.feature
citeproc-1.0.5 features/group/ShortOutputOnly.feature
citeproc-1.0.4 features/group/ShortOutputOnly.feature