Sha256: ca9137167d1bb9aa2b45b5abb9e6b79908cd7b284f1b8dec83d5fd9082daf86e

Contents?: true

Size: 1.44 KB

Versions: 13

Compression:

Stored size: 1.44 KB

Contents

# coding: utf-8

require_relative "../../citation_helper"

describe "citeyearpar macro with authoryear style" do
  let(:options) { { "bibliography-tex-style" => "authoryear", "bibliography-database" => "database.bib" } }

  it "formats a single citation" do
    expect(formatted_citation("citeyearpar:[Erdos65]", options: options)).
      to eq "(1965)"
  end

  it "formats a grouped citation" do
    expect(formatted_citation("citeyearpar:[Erdos65]+[Einstein35]", options: options)).
      to eq "(1965; 1935)"
  end

  it "formats a single citation with a prefix" do
    expect(formatted_citation("citeyearpar:[Erdos65, prefix=see]", options: options)).
      to eq "(see 1965)"
  end

  it "formats a single citation with a suffix" do
    expect(formatted_citation("citeyearpar:[Erdos65, suffix=new edition]", options: options)).
      to eq "(1965, new edition)"
  end

  it "formats a single citation with both a prefix and a suffix" do
    expect(formatted_citation("citeyearpar:[Erdos65, prefix=see, suffix=new edition]", options: options)).
      to eq "(see 1965, new edition)"
  end

  it "formats a single citation with a standard locator" do
    expect(formatted_citation("citeyearpar:[Erdos65, page=41-43]", options: options)).
      to eq "(1965, pp. 41-43)"
  end

  it "formats a single citation with a custom locator" do
    expect(formatted_citation("citeyearpar:[Erdos65, locator=somewhere]", options: options)).
      to eq "(1965, somewhere)"
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
asciidoctor-bibliography-0.11.0 spec/csl/styles/tex_citeyearpar_authoryear_spec.rb
asciidoctor-bibliography-0.10.3 spec/csl/styles/tex_citeyearpar_authoryear_spec.rb
asciidoctor-bibliography-0.10.2 spec/csl/styles/tex_citeyearpar_authoryear_spec.rb
asciidoctor-bibliography-0.10.1 spec/csl/styles/tex_citeyearpar_authoryear_spec.rb
asciidoctor-bibliography-0.10.0 spec/csl/styles/tex_citeyearpar_authoryear_spec.rb
asciidoctor-bibliography-0.9.2 spec/csl/styles/tex_citeyearpar_authoryear_spec.rb
asciidoctor-bibliography-0.9.1 spec/csl/styles/tex_citeyearpar_authoryear_spec.rb
asciidoctor-bibliography-0.9.0 spec/csl/styles/tex_citeyearpar_authoryear_spec.rb
asciidoctor-bibliography-0.7.3 spec/csl/styles/tex_citeyearpar_authoryear_spec.rb
asciidoctor-bibliography-0.8.0 spec/csl/styles/tex_citeyearpar_authoryear_spec.rb
asciidoctor-bibliography-0.7.2 spec/csl/styles/tex_citeyearpar_authoryear_spec.rb
asciidoctor-bibliography-0.7.0 spec/csl/styles/tex_citeyearpar_authoryear_spec.rb
asciidoctor-bibliography-0.6.0 spec/csl/styles/tex_citeyearpar_authoryear_spec.rb