Feature: disambiguate As a CSL cite processor hacker I want the test disambiguate_YearCollapseWithInstitution to pass @citation @disambiguate @citation-items Scenario: Year Collapse With Institution Given the following style: """ """ And the following input: """ [{"author":[{"family":"Smith Co"}],"id":"ITEM-1","issued":{"date-parts":[[2000]]},"title":"Book A","type":"book"},{"author":[{"family":"Smith Co"}],"id":"ITEM-2","issued":{"date-parts":[[2000]]},"title":"Book B","type":"book"},{"author":[{"family":"Smith Co"}],"id":"ITEM-3","issued":{"date-parts":[[2000]]},"title":"Book C","type":"book"}] """ When I cite the following items: """ [[{"id":"ITEM-1"},{"id":"ITEM-2"},{"id":"ITEM-3"}],[{"id":"ITEM-2"}],[{"id":"ITEM-3"}]] """ Then the results should be: | (Smith Co 2000a; 2000b; 2000c) | | (Smith Co 2000b) | | (Smith Co 2000c) |