This commit is contained in:
h00die 2019-09-25 05:24:11 -04:00
parent 3d77c48eae
commit 7c86fb8546
1 changed files with 7 additions and 7 deletions

View File

@ -5,7 +5,7 @@ require 'msf/core/auxiliary/ubiquiti'
require 'bson' require 'bson'
RSpec.describe Msf::Auxiliary::Ubiquiti do RSpec.describe Msf::Auxiliary::Ubiquiti do
class DummyClass class DummyUnifiClass
include Msf::Auxiliary::Ubiquiti include Msf::Auxiliary::Ubiquiti
def framework def framework
Msf::Simple::Framework.create( Msf::Simple::Framework.create(
@ -33,20 +33,20 @@ RSpec.describe Msf::Auxiliary::Ubiquiti do
raise StandardError.new("This method needs to be stubbed.") raise StandardError.new("This method needs to be stubbed.")
end end
end end
subject(:aux_unifi) { DummyClass.new } subject(:aux_unifi) { DummyUnifiClass.new }
let!(:workspace) { FactoryBot.create(:mdm_workspace) } let!(:workspace) { FactoryBot.create(:mdm_workspace) }
context '#create_credential_and_login' do context '#create_credential_and_login' do
let(:session) { FactoryBot.create(:mdm_session) } let(:session) { FactoryBot.create(:mdm_session) }
let(:task) { FactoryBot.create(:mdm_task, workspace: workspace)} let(:task) { FactoryBot.create(:mdm_task, workspace: workspace)}
let(:user) { FactoryBot.create(:mdm_user)} let(:user) { FactoryBot.create(:mdm_user)}
subject(:test_object) { DummyClass.new } subject(:test_object) { DummyUnifiClass.new }
let(:workspace) { FactoryBot.create(:mdm_workspace) } let(:workspace) { FactoryBot.create(:mdm_workspace) }
let(:service) { FactoryBot.create(:mdm_service, host: FactoryBot.create(:mdm_host, workspace: workspace)) } let(:service) { FactoryBot.create(:mdm_service, host: FactoryBot.create(:mdm_host, workspace: workspace)) }