Sha256: 0d6df2984a1a1db8284c77f73ca0682ed8df02d140eaf37f1921488793e29565
Contents?: true
Size: 1.24 KB
Versions: 5
Compression:
Stored size: 1.24 KB
Contents
module JmeterPerf class DSL # DSL method synonymous with the JMeter Element MD5HexAssertion # @param [Hash] params Parameters for the MD5HexAssertion element (default: `{}`). # @yield block to attach to the MD5HexAssertion element # @return [JmeterPerf::MD5HexAssertion], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#md5hexassertion def md5_hex_assertion(params = {}, &) node = MD5HexAssertion.new(params) attach_node(node, &) end class MD5HexAssertion attr_accessor :doc include JmeterPerf::Helpers::XmlDocumentUpdater def initialize(params = {}) testname = params.is_a?(Array) ? "MD5HexAssertion" : (params[:name] || "MD5HexAssertion") @doc = Nokogiri::XML(JmeterPerf::Helpers::String.strip_heredoc( <<~EOS <MD5HexAssertion guiclass="MD5HexAssertionGUI" testclass="MD5HexAssertion" testname="#{testname}" enabled="true"> <stringProp name="MD5HexAssertion.size"/> </MD5HexAssertion> EOS )) update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end end end end
Version data entries
5 entries across 5 versions & 1 rubygems