Sha256: 9a31f548fb597cbfa33901895fe9b52e87aa217dcc2eaf5c8ef8e65f1716759b
Contents?: true
Size: 639 Bytes
Versions: 75
Compression:
Stored size: 639 Bytes
Contents
module RubyJmeter class DSL def xml_assertion(params={}, &block) node = RubyJmeter::XmlAssertion.new(params) attach_node(node, &block) end end class XmlAssertion attr_accessor :doc include Helper def initialize(params={}) testname = params.kind_of?(Array) ? 'XmlAssertion' : (params[:name] || 'XmlAssertion') @doc = Nokogiri::XML(<<-EOS.strip_heredoc) <XMLAssertion guiclass="XMLAssertionGui" testclass="XMLAssertion" testname="#{testname}" enabled="true"/>) EOS update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end end end
Version data entries
75 entries across 75 versions & 1 rubygems