Sha256: b5682a11ce66e5c031d42bcad47de58f017be5e08dd8c7a6a2f52e8cfaf27855

Contents?: true

Size: 846 Bytes

Versions: 4

Compression:

Stored size: 846 Bytes

Contents

Feature: magic
  As a CSL cite processor hacker
  I want the test magic_StripPeriodsFalse to pass

  @citation @magic
  Scenario: Strip Periods False
    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 quotes="true" suffix=", " variable="title" />
          <text variable="container-title" />
        </layout>
      </citation>
    </style>
    """
    And the following input:
    """
    [{"container-title":"Am. L.J.","id":"ITEM-1","title":"An Article","type":"book"}]
    """
    When I cite all items
    Then the result should be:
    """
    “An Article,” Am. L.J.
    """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
citeproc-1.0.7 features/magic/StripPeriodsFalse.feature
citeproc-1.0.6 features/magic/StripPeriodsFalse.feature
citeproc-1.0.5 features/magic/StripPeriodsFalse.feature
citeproc-1.0.4 features/magic/StripPeriodsFalse.feature