Sha256: b5509d7b21d4e1eff108f688bc5d9251cb40de61482e56da2d4f5f251deaacf8
Contents?: true
Size: 878 Bytes
Versions: 30
Compression:
Stored size: 878 Bytes
Contents
# -*- coding: utf-8 -*- require 'rubygems' require 'test/unit' $LOAD_PATH.unshift(File.dirname(__FILE__)) $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) require 'writeexcel' class Test::Unit::TestCase ############################################################################### # # Unpack the binary data into a format suitable for printing in tests. # def unpack_record(data) data.unpack('C*').map! {|c| sprintf("%02X", c) }.join(' ') end # expected : existing file path # target : io (ex) string io object where stored data. def compare_file(expected, target) # target is StringIO object. result = ruby_18 { target.string } || ruby_19 { target.string.force_encoding('BINARY') } assert_equal( File.binread(expected), result, "#{File.basename(expected)} doesn't match." ) end end
Version data entries
30 entries across 30 versions & 3 rubygems