Sha256: 370c911f60a313b3c316f14ca0fc19a602fbe4c248b6a2853304e383acf08949
Contents?: true
Size: 570 Bytes
Versions: 51
Compression:
Stored size: 570 Bytes
Contents
Given /^the generic project "(.*?)" doesn't exist$/ do |file| FileUtils.rm(file) if File.exists?(file) end Given /^the hello world rails project does exist$/ do system("rm -rf /tmp/hello_world_3.2.13") system("cp -a ./spec/support/hello_world_3.2.13 /tmp") end Given /^a safe sinatra application exists$/ do system("rm -rf /tmp/sinatra-safe") system("cp -a ./spec/support/sinatra-safe /tmp") end Given /^a vulnerable sinatra application exists$/ do system("rm -rf /tmp/sinatra-vulnerable") system("cp -a ./spec/support/sinatra-vulnerable /tmp") end
Version data entries
51 entries across 51 versions & 2 rubygems