Feature: disambiguate As a CSL cite processor hacker I want the test disambiguate_SkipAccessedYearSuffix to pass @bibliography @disambiguate Scenario: Skip Accessed Year Suffix Given the following style: """ """ And the following input: """ [{"URL":"http://example.com","accessed":{"date-parts":[["2000","12","15"]]},"author":[{"family":"Doe","given":"John"}],"id":"ITEM-1","issued":{"date-parts":[["1965","6","1"]]},"title":"His Anonymous Life","type":"book"},{"URL":"http://example.com","accessed":{"date-parts":[["2000","12","15"]]},"author":[{"family":"Doe","given":"John"}],"id":"ITEM-2","issued":{"date-parts":[["1965","6","1"]]},"title":"His Anonymous Life","type":"book"}] """ When I render the entire bibliography Then the bibliography should be: """
Doe J. His Anonymous Life. http://example.com (accessed 15 December 2000). 1965a
Doe J. His Anonymous Life. http://example.com (accessed 15 December 2000). 1965b
"""