Sha256: 8590df0732f4eb6df4e4cdccf8162b47cd353f1d4ba32a4481005009991e493f

Contents?: true

Size: 1.88 KB

Versions: 4

Compression:

Stored size: 1.88 KB

Contents

require File.dirname(__FILE__) + '/../spec_helper'

describe YARD::I18n::Text do
  def extract_messages(input, options={})
    text = YARD::I18n::Text.new(StringIO.new(input), options)
    messages = []
    text.extract_messages do |*message|
      messages << message
    end
    messages
  end

  describe "Header" do
    it "should extract attribute" do
      text = <<-eot
# @title Getting Started Guide

# Getting Started with YARD
eot
      extract_messages(text, :have_header => true).should ==
        [[:attribute, "title", "Getting Started Guide", 1],
         [:paragraph, "# Getting Started with YARD", 3]]
    end

    it "should ignore markup line" do
      text = <<-eot
#!markdown
# @title Getting Started Guide

# Getting Started with YARD
eot
      extract_messages(text, :have_header => true).should ==
        [[:attribute, "title", "Getting Started Guide", 2],
         [:paragraph, "# Getting Started with YARD", 4]]
    end

    it "should terminate header block by markup line not at the first line" do
      text = <<-eot
# @title Getting Started Guide
#!markdown

# Getting Started with YARD
eot
      extract_messages(text, :have_header => true).should ==
        [[:attribute, "title", "Getting Started Guide", 1],
         [:paragraph, "#!markdown", 2],
         [:paragraph, "# Getting Started with YARD", 4]]
    end
  end

  describe "Body" do
    it "should split to paragraphs" do
      paragraph1 = <<-eop.strip
Note that class methods must not be referred to with the "::" namespace
separator. Only modules, classes and constants should use "::".
eop
      paragraph2 = <<-eop.strip
You can also do lookups on any installed gems. Just make sure to build the
.yardoc databases for installed gems with:
eop
      text = <<-eot
#{paragraph1}

#{paragraph2}
eot
      extract_messages(text).should ==
        [[:paragraph, paragraph1, 1],
         [:paragraph, paragraph2, 4]]
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
challah-0.6.2 vendor/bundle/gems/yard-0.8.1/spec/i18n/text_spec.rb
challah-0.6.1 vendor/bundle/gems/yard-0.8.1/spec/i18n/text_spec.rb
challah-0.6.0 vendor/bundle/gems/yard-0.8.1/spec/i18n/text_spec.rb
yard-0.8.1 spec/i18n/text_spec.rb