Feature: discretionary As a CSL cite processor hacker I want the test discretionary_SuppressMultipleAuthors to pass @citation @discretionary @citation-items Scenario: Suppress Multiple Authors Given the following style: """ """ And the following input: """ [{"author":[{"family":"Smith","given":"John"}],"id":"ITEM-1","issued":{"date-parts":[["2005"]]},"title":"Book A","type":"book"},{"author":[{"family":"Smith","given":"John"}],"id":"ITEM-2","issued":{"date-parts":[["2006"]]},"title":"Book B","type":"book"},{"author":[{"family":"Jones","given":"Robert"}],"id":"ITEM-3","issued":{"date-parts":[["2000"]]},"title":"Book C","type":"book"}] """ When I cite the following items: """ [[{"id":"ITEM-1","suppress-author":1},{"id":"ITEM-2"}],[{"id":"ITEM-3"}]] """ Then the results should be: | (2005, 2006) | | (Robert Jones 2000) |