Sha256: af0c75e651aa5e43afae2fec82117e479e9e607283e8817f471c4bdba2ae0d90
Contents?: true
Size: 923 Bytes
Versions: 4
Compression:
Stored size: 923 Bytes
Contents
Feature: number As a CSL cite processor hacker I want the test number_IsNumericWithAlpha to pass @citation @number Scenario: Is Numeric With Alpha 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> <choose> <if is-numeric="edition"> <text value="numeric"/> </if> <else> <text value="not numeric"/> </else> </choose> </layout> </citation> </style> """ And the following input: """ [{"edition":"annotated edition","id":"ITEM-1","type":"book"}] """ When I cite all items Then the result should be: """ not numeric """
Version data entries
4 entries across 4 versions & 1 rubygems