summaryrefslogtreecommitdiff
path: root/spec/ruby/core/regexp/compile_spec.rb
blob: c41399cfbb353998805b7dadf60408227338e540 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require_relative '../../spec_helper'
require_relative 'shared/new'

describe "Regexp.compile" do
  it_behaves_like :regexp_new, :compile
end

describe "Regexp.compile given a String" do
  it_behaves_like :regexp_new_string, :compile
  it_behaves_like :regexp_new_string_binary, :compile
end

describe "Regexp.compile given a Regexp" do
  it_behaves_like :regexp_new_regexp, :compile
end

describe "Regexp.new given a non-String/Regexp" do
  it_behaves_like :regexp_new_non_string_or_regexp, :compile
end