Sha256: 59d9203c2df7074d579e79249bb2fa57e3b790c0198c1dd45f4665af5f107bea

Contents?: true

Size: 1.93 KB

Versions: 18

Compression:

Stored size: 1.93 KB

Contents

require 'test_helper'

class TestAttributes < Minitest::Test
  def setup
    contents = File.read(File.join(FIXTURES_DIR, 'dingus.md'))
    @doc = CommonMarker.render_doc(contents.strip)
  end

  def test_sourcepos
    sourcepos = []

    @doc.walk do |node|
      sourcepos << node.sourcepos
    end

    sourcepos.delete_if { |h| h.values.all? { |v| v == 0 } }

    result = [{:start_line=>1, :start_column=>1, :end_line=>10, :end_column=>12}, {:start_line=>1, :start_column=>1, :end_line=>1, :end_column=>17}, {:start_line=>1, :start_column=>4, :end_line=>1, :end_column=>17}, {:start_line=>3, :start_column=>1, :end_line=>5, :end_column=>36}, {:start_line=>3, :start_column=>1, :end_line=>3, :end_column=>55}, {:start_line=>4, :start_column=>1, :end_line=>4, :end_column=>53}, {:start_line=>4, :start_column=>2, :end_line=>4, :end_column=>14}, {:start_line=>4, :start_column=>54, :end_line=>4, :end_column=>58}, {:start_line=>5, :start_column=>1, :end_line=>5, :end_column=>36}, {:start_line=>7, :start_column=>1, :end_line=>10, :end_column=>12}, {:start_line=>7, :start_column=>1, :end_line=>7, :end_column=>11}, {:start_line=>7, :start_column=>4, :end_line=>7, :end_column=>11}, {:start_line=>7, :start_column=>4, :end_line=>7, :end_column=>11}, {:start_line=>8, :start_column=>1, :end_line=>10, :end_column=>12}, {:start_line=>8, :start_column=>4, :end_line=>8, :end_column=>11}, {:start_line=>8, :start_column=>4, :end_line=>8, :end_column=>11}, {:start_line=>9, :start_column=>4, :end_line=>10, :end_column=>12}, {:start_line=>9, :start_column=>4, :end_line=>9, :end_column=>12}, {:start_line=>9, :start_column=>6, :end_line=>9, :end_column=>12}, {:start_line=>9, :start_column=>6, :end_line=>9, :end_column=>12}, {:start_line=>10, :start_column=>4, :end_line=>10, :end_column=>12}, {:start_line=>10, :start_column=>6, :end_line=>10, :end_column=>12}, {:start_line=>10, :start_column=>6, :end_line=>10, :end_column=>12}]

    assert_equal result, sourcepos
  end
end

Version data entries

18 entries across 18 versions & 2 rubygems

Version Path
commonmarker-0.18.2 test/test_attributes.rb
commonmarker-0.18.1 test/test_attributes.rb
commonmarker-0.18.0 test/test_attributes.rb
commonmarker-0.17.13 test/test_attributes.rb
commonmarker-0.17.12 test/test_attributes.rb
commonmarker-0.17.11 test/test_attributes.rb
commonmarker-0.17.10 test/test_attributes.rb
tdiary-5.0.8 vendor/bundle/gems/commonmarker-0.17.9/test/test_attributes.rb
commonmarker-0.17.9 test/test_attributes.rb
commonmarker-0.17.8 test/test_attributes.rb
commonmarker-0.17.7.1 test/test_attributes.rb
commonmarker-0.17.7 test/test_attributes.rb
commonmarker-0.17.6 test/test_attributes.rb
commonmarker-0.17.5 test/test_attributes.rb
commonmarker-0.17.4 test/test_attributes.rb
commonmarker-0.17.2 test/test_attributes.rb
commonmarker-0.17.1 test/test_attributes.rb
commonmarker-0.17.0 test/test_attributes.rb