Sha256: 99ebef71fc3651b69e8bd8b851cdd749ee2bc405efb3b677e9c5b28a219bb94c
Contents?: true
Size: 1.45 KB
Versions: 3
Compression:
Stored size: 1.45 KB
Contents
require "helper" class TestRelativeLinks < MiniTest::Unit::TestCase def setup @agent = Mechanize.new end def test_dot_dot_slash @page = @agent.get("http://localhost/relative/tc_relative_links.html") @page.links.first.click assert_equal('http://localhost/tc_relative_links.html', @agent.current_page.uri.to_s) end def test_too_many_dots @page = @agent.get("http://localhost/relative/tc_relative_links.html") page = @page.link_with(:text => 'too many dots').click assert_equal('http://localhost/tc_relative_links.html', page.uri.to_s) end def test_go_forward @page = @agent.get("http://localhost/tc_relative_links.html") @page = @page.links.first.click assert_equal('http://localhost/relative/tc_relative_links.html', @agent.current_page.uri.to_s) end def test_frame_dot_dot_slash @page = @agent.get("http://localhost/relative/tc_relative_links.html") @agent.click(@page.frame_with(:text => 'frame1')) assert_equal('http://localhost/tc_relative_links.html', @agent.current_page.uri.to_s) end def test_frame_forward_back_forward @page = @agent.get("http://localhost/tc_relative_links.html") @agent.click @page.frame_with(:name => 'frame1') assert_equal('http://localhost/relative/tc_relative_links.html', @agent.current_page.uri.to_s) @agent.click @page.frame_with(:name => 'frame2') assert_equal('http://localhost/relative/tc_relative_links.html', @agent.current_page.uri.to_s) end end
Version data entries
3 entries across 3 versions & 3 rubygems
Version | Path |
---|---|
aai10-mechanize-2.0.1.0 | test/test_relative_links.rb |
neocoin-mechanize-2.0.2 | test/test_relative_links.rb |
mechanize-2.0.1 | test/test_relative_links.rb |