Sha256: d4f35c96a3486bea217d6bd64f1b4cc056014aaf5653aecb63efdf6ba2d52bc5
Contents?: true
Size: 690 Bytes
Versions: 34
Compression:
Stored size: 690 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + "/../../spec_helper") describe Webrat::Link do # include Webrat::Link before do webrat_session = mock(Webrat::TestAdapter) @link_text_with_nbsp = 'Link' + [0xA0].pack("U") + 'Text' end it "should pass through relative urls" do link = Webrat::Link.new(webrat_session, {"href" => "/path"}) webrat_session.should_receive(:request_page).with("/path", :get, {}) link.click end it "shouldnt put base url onto " do url = "https://www.example.com/path" webrat_session.should_receive(:request_page).with(url, :get, {}) link = Webrat::Link.new(webrat_session, {"href" => url}) link.click end end
Version data entries
34 entries across 34 versions & 17 rubygems