File: 1.9.1_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-- 312 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
require 'spec_helper'

RSpec.describe(Regexp::Syntax::V1_9_1) do
  include_examples 'syntax',
  implements: {
    escape: T::Escape::Hex + T::Escape::Octal + T::Escape::Unicode,
    type: T::CharacterType::Hex,
    quantifier: T::Quantifier::Greedy + T::Quantifier::Reluctant + T::Quantifier::Possessive
  }
end