Sha256: 30d8a3585317a91a9aed39e8f4d71bc2e1c979cb2653854af67be002a5eb9d4a
Contents?: true
Size: 1.2 KB
Versions: 5
Compression:
Stored size: 1.2 KB
Contents
module JmeterPerf class DSL # DSL method synonymous with the JMeter Element SimpleConfigElement # @param [Hash] params Parameters for the SimpleConfigElement element (default: `{}`). # @yield block to attach to the SimpleConfigElement element # @return [JmeterPerf::SimpleConfigElement], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#simpleconfigelement def simple_config_element(params = {}, &) node = SimpleConfigElement.new(params) attach_node(node, &) end class SimpleConfigElement attr_accessor :doc include JmeterPerf::Helpers::XmlDocumentUpdater def initialize(params = {}) testname = params.is_a?(Array) ? "SimpleConfigElement" : (params[:name] || "SimpleConfigElement") @doc = Nokogiri::XML(JmeterPerf::Helpers::String.strip_heredoc( <<~EOS <ConfigTestElement guiclass="SimpleConfigGui" testclass="ConfigTestElement" testname="#{testname}" enabled="true"/> 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