File: keep_spec.rb

package info (click to toggle)
ruby-regexp-parser 2.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 968 kB
  • sloc: ruby: 6,396; sh: 12; makefile: 6
file content (10 lines) | stat: -rw-r--r-- 286 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
require 'spec_helper'

RSpec.describe('Keep lexing') do
  include_examples 'lex', /ab\Kcd/,
    1 => [:keep, :mark, '\K', 2,  4,  0, 0, 0]

  include_examples 'lex', /(a\Kb)|(c\\\Kd)ef/,
    2 => [:keep, :mark, '\K', 2,  4,  1, 0, 0],
    9 => [:keep, :mark, '\K', 11, 13, 1, 0, 0]
end