Feature: disambiguate As a CSL cite processor hacker I want the test disambiguate_AndreaEg1b to pass @citation @disambiguate @citation-items Scenario: Andrea Eg1b Given the following style: """ """ And the following input: """ [{"author":[{"family":"Smith","given":"John","static-ordering":false},{"family":"Brown","given":"John","static-ordering":false},{"family":"Jones","given":"John","static-ordering":false}],"id":"ITEM-1","issued":{"date-parts":[[1980]]},"type":"book"},{"author":[{"family":"Smith","given":"John","static-ordering":false},{"family":"Brown","given":"John","static-ordering":false},{"family":"Jones","given":"John","static-ordering":false}],"id":"ITEM-2","issued":{"date-parts":[[1980]]},"type":"book"},{"author":[{"family":"Smith","given":"John","static-ordering":false},{"family":"Benson","given":"John","static-ordering":false},{"family":"Jones","given":"John","static-ordering":false}],"id":"ITEM-3","issued":{"date-parts":[[1980]]},"type":"book"},{"author":[{"family":"Smith","given":"John","static-ordering":false},{"family":"Brown","given":"John","static-ordering":false},{"family":"Jones","given":"Arthur","static-ordering":false}],"id":"ITEM-4","issued":{"date-parts":[[1980]]},"type":"book"}] """ When I cite the following items: """ [[{"id":"ITEM-1"},{"id":"ITEM-2"}],[{"id":"ITEM-1"},{"id":"ITEM-3"}],[{"id":"ITEM-1"},{"id":"ITEM-4"}]] """ Then the results should be: | Smith, Brown & J. Jones (1980); Smith, Brown & J. Jones (1980) | | Smith, Brown & J. Jones (1980); Smith, Benson, et al. (1980) | | Smith, Brown & J. Jones (1980); Smith, Brown & A. Jones (1980) |