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

Version Path
eric-mechanize-0.9.3.20090623142847 test/test_pretty_print.rb
knu-mechanize-0.9.3.20090623142847 test/test_pretty_print.rb
tenderlove-mechanize-0.9.3.20090617085936 test/test_pretty_print.rb
tenderlove-mechanize-0.9.3.20090623142847 test/test_pretty_print.rb
mechanize-ntlm-0.9.1 test/test_pretty_print.rb
mechanize-0.8.0 test/test_pretty_print.rb
mechanize-0.8.2 test/test_pretty_print.rb
mechanize-0.8.3 test/test_pretty_print.rb
mechanize-0.8.1 test/test_pretty_print.rb
mechanize-0.8.4 test/test_pretty_print.rb
mechanize-0.9.0 test/test_pretty_print.rb
mechanize-0.9.1 test/test_pretty_print.rb
mechanize-0.9.3 test/test_pretty_print.rb
mechanize-0.8.5 test/test_pretty_print.rb
mechanize-0.9.2 test/test_pretty_print.rb