2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
2019-05-28 22:41:48 +02:00
|
|
|
require_relative 'shared/new'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
|
|
|
describe "Regexp.compile" do
|
2019-05-28 22:41:48 +02:00
|
|
|
it_behaves_like :regexp_new, :compile
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Regexp.compile given a String" do
|
2019-05-28 22:41:48 +02:00
|
|
|
it_behaves_like :regexp_new_string, :compile
|
|
|
|
it_behaves_like :regexp_new_string_binary, :compile
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Regexp.compile given a Regexp" do
|
2019-05-28 22:41:48 +02:00
|
|
|
it_behaves_like :regexp_new_regexp, :compile
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|