summaryrefslogtreecommitdiff
path: root/spec/ruby/core/regexp/compile_spec.rb
blob: 329cb4f753ce927ac1d430b9cf623fa986ed3141 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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