HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-2.7.4/spec/ruby/library/uri/regexp_spec.rb
require_relative '../../spec_helper'
require 'uri'

#I'm more or less ok with these limited tests, as the more extensive extract tests
#use URI.regexp
describe "URI.regexp" do
  it "behaves according to the MatzRuby tests" do
    URI.regexp.should == URI.regexp
    'x http:// x'.slice(URI.regexp).should == 'http://'
    'x http:// x'.slice(URI.regexp(['http'])).should == 'http://'
    'x http:// x ftp://'.slice(URI.regexp(['http'])).should == 'http://'
    'http://'.slice(URI.regexp([])).should == nil
    ''.slice(URI.regexp).should == nil
    'xxxx'.slice(URI.regexp).should == nil
    ':'.slice(URI.regexp).should == nil
    'From:'.slice(URI.regexp).should == 'From:'
  end
end