Sha256: 8bb76c4d385b5bfadd1bdadf262f39f5a4f020d86ad1c245d0c3117af5f203cc
Contents?: true
Size: 736 Bytes
Versions: 75
Compression:
Stored size: 736 Bytes
Contents
module RubyJmeter class DSL def switch_controller(params={}, &block) node = RubyJmeter::SwitchController.new(params) attach_node(node, &block) end end class SwitchController attr_accessor :doc include Helper def initialize(params={}) testname = params.kind_of?(Array) ? 'SwitchController' : (params[:name] || 'SwitchController') @doc = Nokogiri::XML(<<-EOS.strip_heredoc) <SwitchController guiclass="SwitchControllerGui" testclass="SwitchController" testname="#{testname}" enabled="true"> <stringProp name="SwitchController.value"/> </SwitchController>) 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