Sha256: 2ab1a35e128b170822367ff1b2b75b74988d3dd9b20bb9fa5f0c94fdb0f52b71

Contents?: true

Size: 717 Bytes

Versions: 4

Compression:

Stored size: 717 Bytes

Contents

Feature: namespaces
  As a CSL cite processor hacker
  I want the test namespaces_NonNada3 to pass

  @citation @namespaces
  Scenario: Non Nada3
    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>
    </style>
    """
    And the following input:
    """
    [{"id":"ITEM-1","title":"Book A","type":"book"}]
    """
    When I cite all items
    Then the result should be:
    """
    Book A
    """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
citeproc-1.0.7 features/namespaces/NonNada3.feature
citeproc-1.0.6 features/namespaces/NonNada3.feature
citeproc-1.0.5 features/namespaces/NonNada3.feature
citeproc-1.0.4 features/namespaces/NonNada3.feature