Sha256: 999300c41e6d1d6432b94f41cfb1a4d2614cfd3fa2006c653a968be90f43e675

Contents?: true

Size: 853 Bytes

Versions: 4

Compression:

Stored size: 853 Bytes

Contents

Feature: label
  As a CSL cite processor hacker
  I want the test label_NoFirstCharCapWithInTextClass to pass

  @citation @label
  Scenario: No First Char Cap With In Text Class
    Given the following style:
    """
    <style 
          xmlns="http://purl.org/net/xbiblio/csl"
          class="in-text"
          version="1.0">
      <info>
        <id />
        <title />
        <updated>2009-08-10T04:49:00+09:00</updated>
      </info>
      <locale>
        <terms>
          <term name="no date">n.d.</term>
        </terms>
      </locale>
      <citation>
        <layout>
          <text term="no date"/>
        </layout>
      </citation>
    </style>
    """
    And the following input:
    """
    [{"title":"His Anonymous Life","type":"book"}]
    """
    When I cite all items
    Then the result should be:
    """
    n.d.
    """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
citeproc-1.0.7 features/label/NoFirstCharCapWithInTextClass.feature
citeproc-1.0.6 features/label/NoFirstCharCapWithInTextClass.feature
citeproc-1.0.5 features/label/NoFirstCharCapWithInTextClass.feature
citeproc-1.0.4 features/label/NoFirstCharCapWithInTextClass.feature