149c3ecc63
* --ask option ported to new location * --version option now works * MSF version updated * All specs passing
17 lines
391 B
Ruby
17 lines
391 B
Ruby
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
|
|
db_manager.stub(:active => active)
|
|
end
|
|
end |