Feature: sort As a CSL cite processor hacker I want the test sort_CitationSecondaryKey to pass @citation @sort @citations Scenario: Citation Secondary Key Given the following style: """ """ And the following input: """ [{"author":[{"family":"Roe","given":"Jane"}],"id":"ITEM-1","issued":{"date-parts":[[1995]]},"type":"book"},{"author":[{"family":"Doe","given":"John"}],"id":"ITEM-2","issued":{"date-parts":[[1995]]},"type":"book"}] """ And I have a citations input When I cite all items Then the result should be: """ >>[0] Doe 1995; Roe 1995 """