diff options
Diffstat (limited to 'spec/ruby/core/regexp/compile_spec.rb')
| -rw-r--r-- | spec/ruby/core/regexp/compile_spec.rb | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/spec/ruby/core/regexp/compile_spec.rb b/spec/ruby/core/regexp/compile_spec.rb index 530816e07c..887c8d77dc 100644 --- a/spec/ruby/core/regexp/compile_spec.rb +++ b/spec/ruby/core/regexp/compile_spec.rb @@ -1,18 +1,19 @@ -require File.expand_path('../../../spec_helper', __FILE__) -require File.expand_path('../shared/new_ascii', __FILE__) -require File.expand_path('../shared/new_ascii_8bit', __FILE__) +require_relative '../../spec_helper' +require_relative 'shared/new' describe "Regexp.compile" do - it_behaves_like :regexp_new_ascii, :compile - it_behaves_like :regexp_new_ascii_8bit, :compile + it_behaves_like :regexp_new, :compile end describe "Regexp.compile given a String" do - it_behaves_like :regexp_new_string_ascii, :compile - it_behaves_like :regexp_new_string_ascii_8bit, :compile + 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_ascii, :compile - it_behaves_like :regexp_new_regexp_ascii_8bit, :compile + it_behaves_like :regexp_new_regexp, :compile +end + +describe "Regexp.compile given a non-String/Regexp" do + it_behaves_like :regexp_new_non_string_or_regexp, :compile end |
