Files
wpscan/spec/wpscan_spec.rb
2013-04-05 14:07:06 +02:00

22 lines
589 B
Ruby

# encoding: UTF-8
require 'spec_helper'
describe 'wpscan main checks' do
it 'should check for errors on running the mainscript' do
a = %x[ruby #{ROOT_DIR}/wpscan.rb]
a.should =~ /No argument supplied/
end
it 'should check for valid syntax' do
result = ""
Dir.glob("**/*.rb") do |file|
res = %x{ruby -c #{ROOT_DIR}/#{file} 2>&1}.split("\n")
ok = res.select {|msg| msg =~ /Syntax OK/}
result << ("####################\nSyntax error in #{file}:\n#{res.join("\n").strip()}\n") if ok.size != 1
end
fail(result) unless result.empty?
end
end