Sha256: c986cf86d77fde42849dd3409760b022345764054ba6b1cf212618fad95e9a04
Contents?: true
Size: 1.04 KB
Versions: 4
Compression:
Stored size: 1.04 KB
Contents
Feature: date As a CSL cite processor hacker I want the test date_MaskNonexistentWithCondition to pass @citation @date Scenario: Mask Nonexistent With Condition 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 value="Hello"/> <choose> <if variable="issued"> <date prefix="(" suffix=")" variable="issued"> <date-part form="long" name="month" /> <date-part name="day" suffix=", " /> <date-part name="year" /> </date> </if> </choose> </layout> </citation> </style> """ And the following input: """ [{"id":"ITEM-1","title":"Ignore me","type":"book"}] """ When I cite all items Then the result should be: """ Hello """
Version data entries
4 entries across 4 versions & 1 rubygems