Files
metasploit-gs/spec/support/shared/contexts/msf/db_manager.rb
T
2015-12-10 21:47:22 -06:00

18 lines
420 B
Ruby

RSpec.shared_context 'Msf::DBManager' do
include_context 'Msf::Simple::Framework'
let(:active) do
true
end
let(:db_manager) do
framework.db
end
before(:each) do
# already connected due to use_transactional_fixtures, but need some of the side-effects of #connect
framework.db.workspace = framework.db.default_workspace
allow(db_manager).to receive(:active).and_return(active)
end
end