# frozen_string_literal: true require 'spec_helper' describe PWN::SAST::Sudo do it 'scan method should exist' do scan_response = PWN::SAST::Sudo expect(scan_response).to respond_to :scan end it 'should display information for nist_800_53_requirements' do nist_800_53_requirements_response = PWN::SAST::Sudo expect(nist_800_53_requirements_response).to respond_to :nist_800_53_requirements end it 'should display information for authors' do authors_response = PWN::SAST::Sudo expect(authors_response).to respond_to :authors end it 'should display information for existing help method' do help_response = PWN::SAST::Sudo expect(help_response).to respond_to :help end end