Sha256: 79a432d6e0f4fd7fac29da151585ccb4ecc2f77342b1be214ce2132ba3d24bf9

Contents?: true

Size: 1.67 KB

Versions: 7

Compression:

Stored size: 1.67 KB

Contents

Feature: Rendering bibliography nodes
  As a hacker of cite processors
  I want to render citation items
  Using bibliography nodes

  Scenario: Rendering APA style bibliographies as text in English
    Given the "apa-with-different-translations" style
    When I reference the following items as "text":
      | type            | author           | title                 | issued       | translator  |
      | book            | Thomas Pynchon   | The crying of lot 49  | July 7, 2006 | Harald Hard |
    Then the results should be:
      | Pynchon, T. (2006). The crying of lot 49. (H. Hard, Who translated this piece on her/his own). |

  Scenario: Rendering APA style bibliographies as text in French
    Given the "apa-with-different-translations" style
    Given the "fr" locale
    When I reference the following items as "text":
      | type            | author           | title                 | issued       | translator  |
      | book            | Thomas Pynchon   | The crying of lot 49  | July 7, 2006 | Harald Hard |
    Then the results should be:
      | Pynchon, T. (2006). The crying of lot 49. (H. Hard, Le merveilleux traducteur). |

  Scenario: Rendering APA style bibliographies as text in German (a language where the style has no explicit terms for)
    Given the "apa-with-different-translations" style
    Given the "de" locale
    When I reference the following items as "text":
      | type            | author           | title                 | issued       | translator  |
      | book            | Thomas Pynchon   | The crying of lot 49  | July 7, 2006 | Harald Hard |
    Then the results should be:
      | Pynchon, T. (2006). The crying of lot 49. (H. Hard, Übers.). |

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
citeproc-ruby-1.1.8 features/style_immanent_locale_terms.feature
citeproc-ruby-1.1.7 features/style_immanent_locale_terms.feature
citeproc-ruby-1.1.6 features/style_immanent_locale_terms.feature
citeproc-ruby-1.1.5 features/style_immanent_locale_terms.feature
citeproc-ruby-1.1.4 features/style_immanent_locale_terms.feature
citeproc-ruby-1.1.3 features/style_immanent_locale_terms.feature
citeproc-ruby-1.1.2 features/style_immanent_locale_terms.feature