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