=begin Copyright 2010-2015 Tasos Laskos This file is part of the Arachni Framework project and is subject to redistribution and commercial restrictions. Please see the Arachni Framework web site for more information on licensing and terms of use. =end module Arachni::Element class LinkTemplate module Capabilities # Extends {Arachni::Element::Capabilities::Auditable} with {LinkTemplate}-specific # functionality. # # @author Tasos "Zapotek" Laskos module Auditable include Arachni::Element::Capabilities::Auditable def coverage_id dom_data ? "#{super}:#{dom_data[:inputs].keys.sort}" : super end end end end end