File: all_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 (22 lines) | stat: -rw-r--r-- 594 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'spec_helper'

RSpec.describe(Regexp::Lexer) do
  specify('lexer returns an array') do
    expect(RL.lex('abc')).to be_instance_of(Array)
  end

  specify('lexer returns tokens') do
    tokens = RL.lex('^abc+[^one]{2,3}\b\d\C-C$')
    expect(tokens).to all(be_a Regexp::Token)
    expect(tokens.map { |token| token.to_a.length }).to all(eq 8)
  end

  specify('lexer token count') do
    tokens = RL.lex(/^(one|two){2,3}([^d\]efm-qz\,\-]*)(ghi)+$/i)
    expect(tokens.length).to eq 28
  end

  specify('lexer scan alias') do
    expect(RL.scan(/a|b|c/)).to eq RL.lex(/a|b|c/)
  end
end