Feature: disambiguate As a CSL cite processor hacker I want the test disambiguate_ByCiteBaseNameCountOnFailureIfYearSuffixAvailable to pass @citation @disambiguate Scenario: By Cite Base Name Count On Failure If Year Suffix Available Given the following style: """ """ And the following input: """ [{"author":[{"family":"Asthma","given":"Albert","static-ordering":false},{"family":"Bronchitis","given":"Bosworth","static-ordering":false},{"family":"Cold","given":"Crispin","static-ordering":false}],"id":"ITEM-1","issued":{"date-parts":[["1990"]]},"title":"Book A","type":"book"},{"author":[{"family":"Asthma","given":"Albert","static-ordering":false},{"family":"Bronchitis","given":"Beauregarde","static-ordering":false},{"family":"Cold","given":"Crispin","static-ordering":false}],"id":"ITEM-2","issued":{"date-parts":[["1990"]]},"title":"Book B","type":"book"},{"author":[{"family":"Dropsy","given":"Devon","static-ordering":false},{"family":"Enteritis","given":"Edward","static-ordering":false},{"family":"Fever","given":"Xavier","static-ordering":false}],"id":"ITEM-3","issued":{"date-parts":[["2000"]]},"title":"Book C","type":"book"},{"author":[{"family":"Dropsy","given":"Devon","static-ordering":false},{"family":"Enteritis","given":"Ernie","static-ordering":false},{"family":"Fever","given":"Yves","static-ordering":false}],"id":"ITEM-4","issued":{"date-parts":[["2000"]]},"title":"Book D","type":"book"}] """ When I cite all items Then the result should be: """ Asthma, Bosworth Bronchitis, et al. (1990); Asthma, Beauregarde Bronchitis, et al. (1990); Dropsy, Edward Enteritis, et al. (2000); Dropsy, Ernie Enteritis, et al. (2000) """