module JmeterPerf class DSL # DSL method synonymous with the JMeter Element SMIMEAssertion # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#smimeassertion # @param [Hash] params Parameters for the SMIMEAssertion element (default: `{}`). # @yield block to attach to the SMIMEAssertion element # @return [JmeterPerf::SMIMEAssertion], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. def smime_assertion(params = {}, &) node = JmeterPerf::SMIMEAssertion.new(params) attach_node(node, &) end end class SMIMEAssertion attr_accessor :doc include Helper def initialize(params = {}) testname = params.is_a?(Array) ? "SMIMEAssertion" : (params[:name] || "SMIMEAssertion") @doc = Nokogiri::XML(<<~EOS.strip_heredoc) false false false false false EOS update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end end end