Files
wpscan/spec/lib/wpscan_spec.rb
Ryan Dewhurst d268a86795 HELLO v3!!!
2018-09-26 21:12:01 +02:00

14 lines
253 B
Ruby

require 'spec_helper'
describe WPScan do
it 'has a version number' do
expect(WPScan::VERSION).not_to be nil
end
describe '#app_name' do
it 'returns the overriden string' do
expect(WPScan.app_name).to eql 'wpscan'
end
end
end