Feature: disambiguate
As a CSL cite processor hacker
I want the test disambiguate_DisambiguateWithThree to pass
@citation @disambiguate @citations
Scenario: Disambiguate With Three
Given the following style:
"""
"""
And the following input:
"""
[{"author":[{"family":"Aalto","given":"Alan"}],"id":"ITEM-1","title":"Book A","type":"book"},{"author":[{"family":"Aalto","given":"Alan"}],"id":"ITEM-2","title":"Book B","type":"book"},{"author":[{"family":"Aalto","given":"Alan"}],"id":"ITEM-3","title":"Book C","type":"book"}]
"""
And I have a citations input
When I cite all items
Then the result should be:
"""
>>[0] (Aalto, Book A)
>>[1] (Aalto, Book B)
>>[2] (Aalto, Book C)
"""