Sha256: 06f060c1cb65dc8e534a7c6976b537e5590e09e31486505b19871e1d1e5935be

Contents?: true

Size: 1.09 KB

Versions: 4

Compression:

Stored size: 1.09 KB

Contents

Feature: bibheader
  As a CSL cite processor hacker
  I want the test bibheader_SecondFieldAlign to pass

  @bibliography-header @bibheader
  Scenario: Second Field Align
    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>
    	  <text variable="title"/>
        </layout>
      </citation>
      <bibliography second-field-align="flush">
        <layout>
          <text variable="title"/>
          <text variable="container-title"/>
        </layout>
      </bibliography>
    </style>
    """
    And the following input:
    """
    [{"container-title":"Big Series","id":"ITEM-1","title":"One","type":"book"},{"container-title":"Big Series","id":"ITEM-2","title":"One+","type":"book"}]
    """
    When I render the entire bibliography
    Then the bibliography's options should match:
      | entry-spacing | line-spacing |
      | 1             | 1            |

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
citeproc-1.0.7 features/bibheader/SecondFieldAlign.feature
citeproc-1.0.6 features/bibheader/SecondFieldAlign.feature
citeproc-1.0.5 features/bibheader/SecondFieldAlign.feature
citeproc-1.0.4 features/bibheader/SecondFieldAlign.feature