tests are working again, I will work on surpressing the errors. Also merged @jasnow work

This commit is contained in:
cktricky
2013-10-27 21:46:12 -04:00
parent 4d2c421863
commit 11480ac853
2 changed files with 4 additions and 5 deletions
-1
View File
@@ -14,7 +14,6 @@ class Benefits < ActiveRecord::Base
if File.exists?(full_file_name)
system("cp #{full_file_name} #{data_path}/bak#{Time.now.to_i}_#{file.original_filename}")
end
rescue
end
=begin
@@ -15,7 +15,7 @@ feature 'command injection' do
visit "/users/#{@normal_user.user_id}/benefit_forms"
Dir.mktmpdir do |dir|
hackety_file = File.join(dir, 'etc/passwd; cd public && cd data && rm -f * ;')
hackety_file = File.join(dir, 'test; cd public && cd data && rm -f * ;')
File.open(hackety_file, 'w') { |f| f.print 'mwahaha' }
within('.new_benefits') do
attach_file 'benefits_upload', hackety_file