Sha256: 278090b5571c5f52ff3aa2104fef1f87adf98ef40013ee5f27dd4bbbff00e655
Contents?: true
Size: 768 Bytes
Versions: 15
Compression:
Stored size: 768 Bytes
Contents
require File.expand_path(File.join(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
15 entries across 15 versions & 5 rubygems