File: all_spec.rb

package info (click to toggle)
ruby-regexp-parser 2.11.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,092 kB
  • sloc: ruby: 6,891; makefile: 6; sh: 3
file content (20 lines) | stat: -rw-r--r-- 519 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe(Regexp::Scanner) do
  specify('scanner returns an array') do
    expect(RS.scan('abc')).to be_instance_of(Array)
  end

  specify('scanner returns tokens as arrays') do
    tokens = RS.scan('^abc+[^one]{2,3}\b\d\C-C$')
    expect(tokens).to all(be_a Array)
    expect(tokens.map(&:length)).to all(eq 5)
  end

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