Sha256: 710fff9059034d31488a99ebd8c1724be14af1562b0801b526067e805da67722

Contents?: true

Size: 1.37 KB

Versions: 49

Compression:

Stored size: 1.37 KB

Contents

require File.expand_path('../../../spec_helper', __FILE__)
require 'uri'

describe "URI#route_to" do

  #this could be split out a good bit better
  it "gives the minimal difference between the current URI and the target" do
    URI("http://example.com/a.html").route_to('http://example.com/a.html').to_s.should == ""
    URI("http://example.com/a.html").route_to('http://example.com/b.html').to_s.should == "b.html"
    URI("http://example.com/a/").route_to('http://example.com/b/').to_s.should == "../b/"
    URI("http://example.com/a/c").route_to('http://example.com/b/').to_s.should == "../b/"
    URI("http://example.com/a/b/").route_to('http://example.com/b/').to_s.should == "../../b/"
    URI("http://example.com/a/b/").route_to('http://EXAMPLE.cOm/b/').to_s.should == "../../b/"
    URI("http://example.com/a/b/").route_to('http://example.net/b/').to_s.should == "//example.net/b/"
    URI("mailto:foo@example.com").route_to('mailto:foo@example.com#bar').to_s.should == "#bar"

    #this was a little surprising to me
    URI("mailto:foo@example.com#bar").route_to('mailto:foo@example.com').to_s.should == ""
  end

  ruby_bug "redmine:3506", "1.9.2" do
    it "accepts a string-like argument" do
      str = mock('string-like')
      str.should_receive(:to_str).and_return("http://example.com/b.html")
      URI("http://example.com/a.html").route_to(str).to_s.should == "b.html"
    end
  end
end

Version data entries

49 entries across 49 versions & 2 rubygems

Version Path
rhodes-7.6.0 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
rhodes-7.5.1 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
rhodes-7.4.1 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
rhodes-7.1.17 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
rhodes-6.2.0 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
rhodes-6.0.11 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
rhodes-5.5.18 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
rhodes-5.5.17 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
rhodes-5.5.15 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
rhodes-5.5.2 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
rhodes-5.5.0 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
rhodes-3.5.1.12 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
rhodes-3.3.5 spec/framework_spec/app/spec/library/uri/route_to_spec.rb
rhodes-3.4.2 spec/framework_spec/app/spec/library/uri/route_to_spec.rb