Sha256: fac1c4238b05a3d854ef0300f4e1e448f235e4427ba7cf12c32a2adb424a4626
Contents?: true
Size: 459 Bytes
Versions: 12
Compression:
Stored size: 459 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') require File.expand_path(File.dirname(__FILE__) + '/../lib/pedump') %w'calc_upx.exe arm_upx.exe'.each do |fname| describe fname do before :all do File.open(File.join("samples",fname),"rb") do |f| @packer = PEdump.new(f).packer.first end end it "should detect UPX" do @packer.should_not be_nil @packer.name.should include 'UPX' end end end
Version data entries
12 entries across 12 versions & 1 rubygems