summaryrefslogtreecommitdiff
path: root/spec/ruby/core/regexp/new_spec.rb
blob: 65f612df55311f8d3353f05ea4c1b3284005fd84 (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.new" do
  it_behaves_like :regexp_new, :new
end

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

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

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