Sha256: bcef1965e60378192c41537ac06ae7ed763c1d9d90f522acbcd2fdc292ec1232

Contents?: true

Size: 838 Bytes

Versions: 6

Compression:

Stored size: 838 Bytes

Contents

# -*- coding: utf-8; frozen_string_literal: true -*-
#
#--
# Copyright (C) 2009-2019 Thomas Leitner <t_leitner@gmx.at>
#
# This file is part of kramdown which is licensed under the MIT.
#++
#

require 'minitest/autorun'
require 'kramdown/utils/string_scanner'

describe Kramdown::Utils::StringScanner do
  [
    ["...........X............", [/X/], 1],
    ["1\n2\n3\n4\n5\n6X", [/X/], 6],
    ["1\n2\n3\n4\n5\n6X\n7\n8X", [/X/, /X/], 8],
    [(".\n" * 1000) + 'X', [/X/], 1001],
  ].each_with_index do |test_data, i|
    test_string, scan_regexes, expect = test_data
    it "computes the correct current_line_number for example ##{i + 1}" do
      str_sc = Kramdown::Utils::StringScanner.new(test_string)
      scan_regexes.each {|scan_re| str_sc.scan_until(scan_re) }
      str_sc.current_line_number.must_equal expect
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
kramdown-2.2.1 test/test_string_scanner_kramdown.rb
kramdown-2.2.0 test/test_string_scanner_kramdown.rb
kramdown-2.1.0 test/test_string_scanner_kramdown.rb
kramdown-2.0.0 test/test_string_scanner_kramdown.rb
kramdown-2.0.0.beta2 test/test_string_scanner_kramdown.rb
kramdown-2.0.0.beta1 test/test_string_scanner_kramdown.rb