2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
|
|
|
require_relative 'shared/new_ascii'
|
|
|
|
require_relative 'shared/new_ascii_8bit'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
|
|
|
describe "Regexp.new" do
|
|
|
|
it_behaves_like :regexp_new_ascii, :new
|
|
|
|
it_behaves_like :regexp_new_ascii_8bit, :new
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Regexp.new given a String" do
|
|
|
|
it_behaves_like :regexp_new_string_ascii, :new
|
|
|
|
it_behaves_like :regexp_new_string_ascii_8bit, :new
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Regexp.new given a Regexp" do
|
|
|
|
it_behaves_like :regexp_new_regexp_ascii, :new
|
|
|
|
it_behaves_like :regexp_new_regexp_ascii_8bit, :new
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Regexp.new given a Fixnum" do
|
|
|
|
it "raises a TypeError" do
|
|
|
|
lambda { Regexp.new(1) }.should raise_error(TypeError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Regexp.new given a Float" do
|
|
|
|
it "raises a TypeError" do
|
|
|
|
lambda { Regexp.new(1.0) }.should raise_error(TypeError)
|
|
|
|
end
|
|
|
|
end
|