Sha256: 4f1ab5bda1dc78427eab7dafe76c3cc9daf43a1e1716d507c14d30bf89bb5586

Contents?: true

Size: 615 Bytes

Versions: 10

Compression:

Stored size: 615 Bytes

Contents

$:.unshift File.join(File.dirname(__FILE__), "..", "lib")

require 'test/unit'
require 'rubygems'
require 'mechanize'
require 'test_includes'
require 'fileutils'

class TestSaveFile < Test::Unit::TestCase
  include TestMethods

  def setup
    @agent = WWW::Mechanize.new
  end

  def test_save_file
    page = @agent.get('http://localhost:2000/form_no_action.html')
    length = page.response['Content-Length']
    page.save_as("test.html")
    file_length = nil
    File.open("test.html", "r") { |f| file_length = f.read.length }
    FileUtils.rm("test.html")
    assert_equal(length.to_i, file_length)
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
mechanize-0.5.4 test/tc_save_file.rb
mechanize-0.5.3 test/tc_save_file.rb
mechanize-0.6.0 test/tc_save_file.rb
mechanize-0.6.1 test/tc_save_file.rb
mechanize-0.6.6 test/tc_save_file.rb
mechanize-0.6.4 test/tc_save_file.rb
mechanize-0.6.7 test/tc_save_file.rb
mechanize-0.6.2 test/tc_save_file.rb
mechanize-0.6.3 test/tc_save_file.rb
mechanize-0.6.5 test/tc_save_file.rb