d6bf0fd781
MSP-13484 Disabled expose_dsl_globally in spec_helper, so need to qualify top-level describe.
26 lines
428 B
Ruby
26 lines
428 B
Ruby
require 'spec_helper'
|
|
|
|
require 'msf/ui'
|
|
require 'msf/ui/console/command_dispatcher/auxiliary'
|
|
|
|
RSpec.describe Msf::Ui::Console::CommandDispatcher::Auxiliary do
|
|
include_context 'Msf::DBManager'
|
|
include_context 'Msf::UIDriver'
|
|
|
|
subject(:aux) do
|
|
described_class.new(driver)
|
|
end
|
|
|
|
describe "#cmd_run" do
|
|
end
|
|
|
|
describe "#cmd_rerun" do
|
|
end
|
|
|
|
describe "#cmd_exploit" do
|
|
end
|
|
|
|
describe "#cmd_reload" do
|
|
end
|
|
end
|