Sha256: 29f865c7a57dfa125f2f4f5705055b0ee10e94750ac6ebe31a6cb087f717820b

Contents?: true

Size: 1.57 KB

Versions: 7

Compression:

Stored size: 1.57 KB

Contents

# coding: utf-8

require_relative "../../citation_helper"

describe "citeauthor* macro with authoryear style" do
  let(:options) { { "bibliography-tex-style" => "authoryear" } }

  it "formats a single citation" do
    expect(formatted_citation("citeauthor*:[Erdos65]", options: options)).
      to eq "Erdős, Heyting, and Brouwer"
  end

  it "formats a grouped citation" do
    expect(formatted_citation("citeauthor*:[Erdos65]+[Einstein35]", options: options)).
      to eq "Erdős, Heyting, and Brouwer; Einstein, Podolsky, and Rosen"
  end

  it "formats a single citation with a prefix" do
    expect(formatted_citation("citeauthor*:[Erdos65, prefix=see]", options: options)).
      to eq "see Erdős, Heyting, and Brouwer"
  end

  it "formats a single citation with a suffix" do
    expect(formatted_citation("citeauthor*:[Erdos65, suffix=new edition]", options: options)).
      to eq "Erdős, Heyting, and Brouwer, new edition"
  end

  it "formats a single citation with both a prefix and a suffix" do
    expect(formatted_citation("citeauthor*:[Erdos65, prefix=see, suffix=new edition]", options: options)).
      to eq "see Erdős, Heyting, and Brouwer, new edition"
  end

  it "formats a single citation with a standard locator" do
    expect(formatted_citation("citeauthor*:[Erdos65, page=41-43]", options: options)).
      to eq "Erdős, Heyting, and Brouwer, pp. 41-43"
  end

  it "formats a single citation with a custom locator" do
    expect(formatted_citation("citeauthor*:[Erdos65, locator=somewhere]", options: options)).
      to eq "Erdős, Heyting, and Brouwer, somewhere"
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
asciidoctor-bibliography-0.5.0 spec/csl/styles/tex_citeauthors_authoryear_spec.rb
asciidoctor-bibliography-0.5.1 spec/csl/styles/tex_citeauthors_authoryear_spec.rb
asciidoctor-bibliography-0.4.4 spec/csl/styles/tex_citeauthors_authoryear_spec.rb
asciidoctor-bibliography-0.4.3 spec/csl/styles/tex_citeauthors_authoryear_spec.rb
asciidoctor-bibliography-0.4.2 spec/csl/styles/tex_citeauthors_authoryear_spec.rb
asciidoctor-bibliography-0.4.1 spec/csl/styles/tex_citeauthors_authoryear_spec.rb
asciidoctor-bibliography-0.4.0 spec/csl/styles/tex_citeauthors_authoryear_spec.rb