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