Feature: sort As a CSL cite processor hacker I want the test sort_NumberOfAuthorsAsKey to pass @bibliography @sort Scenario: Number Of Authors As Key Given the following style: """ """ And the following input: """ [{"author":[{"family":"Doe","given":"John","static-ordering":false}],"id":"item-1","issued":{"date-parts":[["2000"]]},"title":"Book One","type":"book"},{"author":[{"family":"Doe","given":"John","static-ordering":false},{"family":"Doe","given":"Jake","static-ordering":false},{"family":"Jones","given":"Robert","static-ordering":false}],"id":"item-2","issued":{"date-parts":[["2000"]]},"title":"Book Three","type":"book"},{"editor":[{"family":"Doe","given":"John","static-ordering":false},{"family":"Roe","given":"Jane","static-ordering":false}],"id":"item-3","issued":{"date-parts":[["2000"]]},"title":"Book Two","type":"book"}] """ When I render the entire bibliography Then the bibliography should be: """
Book One
Book Two
Book Three
"""