Feature: fullstyles As a CSL cite processor hacker I want the test fullstyles_ChicagoAuthorDateSimple to pass @bibliography @fullstyles Scenario: Chicago Author Date Simple Given the following style: """ """ And the following input: """ [{"author":[{"family":"Doe","given":"John","static-ordering":false}],"id":"ITEM-1","issued":{"date-parts":[["1990"]]},"publisher":"Zardoz Press","publisher-place":"Brobdingnag","title":"Book A","type":"book"},{"author":[{"family":"Doe","given":"John","static-ordering":false},{"family":"Roe","given":"Jane","static-ordering":false}],"id":"ITEM-2","issued":{"date-parts":[["1991"]]},"title":"Book B","type":"book"},{"author":[{"family":"Doe","given":"John","static-ordering":false},{"family":"Roe","given":"Jane","static-ordering":false},{"family":"Asthma","given":"Alvin","static-ordering":false}],"id":"ITEM-3","issued":{"date-parts":[["1992"]]},"title":"Book C","type":"book"},{"author":[{"family":"Doe","given":"John","static-ordering":false},{"family":"Roe","given":"Jane","static-ordering":false},{"family":"Asthma","given":"Alvin","static-ordering":false},{"family":"Bronchitis","given":"Bob","static-ordering":false},{"family":"Cold","given":"Chris","static-ordering":false},{"family":"Dropsy","given":"Don","static-ordering":false},{"family":"Enteritis","given":"Ernie","static-ordering":false},{"family":"Fever","given":"Frank","static-ordering":false},{"family":"Goiter","given":"George","static-ordering":false},{"family":"Hiccup","given":"Herb","static-ordering":false},{"family":"Impetigo","given":"Irwin","static-ordering":false}],"id":"ITEM-4","issued":{"date-parts":[["1993"]]},"title":"Book D","type":"book"},{"author":[{"family":"Doe","given":"John","static-ordering":false},{"family":"Roe","given":"Jane","static-ordering":false},{"family":"Asthma","given":"Alvin","static-ordering":false},{"family":"Bronchitis","given":"Bob","static-ordering":false},{"family":"Cold","given":"Chris","static-ordering":false},{"family":"Dropsy","given":"Don","static-ordering":false},{"family":"Enteritis","given":"Ernie","static-ordering":false},{"family":"Fever","given":"Frank","static-ordering":false},{"family":"Goiter","given":"George","static-ordering":false},{"family":"Hiccup","given":"Herb","static-ordering":false},{"family":"Impetigo","given":"Irwin","static-ordering":false},{"family":"Jaudice","given":"Jeff","static-ordering":false}],"id":"ITEM-5","issued":{"date-parts":[["1994"]]},"title":"Book E","type":"book"}] """ When I render the entire bibliography Then the bibliography should be: """
Doe, John. 1990. Book A. Brobdingnag: Zardoz Press.
Doe, John, and Jane Roe. 1991. Book B.
Doe, John, Jane Roe, and Alvin Asthma. 1992. Book C.
Doe, John, Jane Roe, Alvin Asthma, Bob Bronchitis, Chris Cold, Don Dropsy, Ernie Enteritis, et al. 1993. Book D.
---. 1994. Book E.
"""