Sha256: 2b9c4daf4a34ce31b7cb98aa02e833ea18a7a0284626b2ad145fa88c31085560
Contents?: true
Size: 741 Bytes
Versions: 9
Compression:
Stored size: 741 Bytes
Contents
require File.dirname(__FILE__) + "/helper" class TestPrettyPrint < Test::Unit::TestCase def setup @agent = WWW::Mechanize.new end def test_pretty_print @agent.get("http://localhost/tc_pretty_print.html") pretty_string = @agent.pretty_print_inspect assert_match("{title \"tc_pretty_print.html\"}", pretty_string) assert_match(/\{frames[^"]*"http:\/\/meme/, pretty_string) assert_match(/\{iframes[^"]*"http:\/\/meme/, pretty_string) assert_match( "{links #<WWW::Mechanize::Page::Link \"Google\" \"http://google.com/\">}", pretty_string ) assert_match("form1", pretty_string) assert_match("POST", pretty_string) assert_match("{file_uploads}", pretty_string) end end
Version data entries
9 entries across 9 versions & 1 rubygems