Feature: integration As a CSL cite processor hacker I want the test integration_CitationSort to pass @citation @integration @citations Scenario: Citation Sort Given the following style: """ """ And the following input: """ [{"author":[{"family":"Doe","given":"John","static-ordering":false}],"id":"ITEM-1","type":"book"},{"author":[{"family":"Roe","given":"Jane","static-ordering":false}],"id":"ITEM-2","type":"book"},{"author":[{"family":"Noakes","given":"John","static-ordering":false}],"id":"ITEM-3","type":"book"},{"author":[{"family":"Snoakes","given":"Richard","static-ordering":false}],"id":"ITEM-4","type":"book"}] """ And I have a citations input When I cite all items Then the result should be: """ >>[0] (Doe; Noakes; Roe; Snoakes) """