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