Sha256: 8acd38fd4e7036638e149178e94b38302fbdd4b797ff74a531ed2b543eac8743

Contents?: true

Size: 972 Bytes

Versions: 1

Compression:

Stored size: 972 Bytes

Contents

require 'spec_helper'

RSpec.describe(Regexp::Parser) do
  specify('parse returns a root expression') do
    expect(RP.parse('abc')).to be_instance_of(Regexp::Expression::Root)
  end

  specify('parse root contains expressions') do
    root = RP.parse(/^a.c+[^one]{2,3}\b\d\\\C-C$/)
    expect(root.expressions).to all(be_a Regexp::Expression::Base)
  end

  specify('parse node types') do
    root = RP.parse('^(one){2,3}([^d\\]efm-qz\\,\\-]*)(ghi)+$')

    expect(root[1][0]).to be_a(Literal)
    expect(root[1]).to be_quantified
    expect(root[2][0]).to be_a(CharacterSet)
    expect(root[2]).not_to be_quantified
    expect(root[3]).to be_a(Group::Capture)
    expect(root[3]).to be_quantified
  end

  specify('parse no quantifier target raises error') do
    expect { RP.parse('?abc') }.to raise_error(ArgumentError)
  end

  specify('parse sequence no quantifier target raises error') do
    expect { RP.parse('abc|?def') }.to raise_error(ArgumentError)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
regexp_parser-1.5.0 spec/parser/all_spec.rb