Sha256: f226a852df98777ec95b4310363b481028ad8b761db3a0594e01ca70724abd80
Contents?: true
Size: 825 Bytes
Versions: 61
Compression:
Stored size: 825 Bytes
Contents
module RubyJmeter class DSL def if_controller(params={}, &block) node = RubyJmeter::IfController.new(params) attach_node(node, &block) end end class IfController attr_accessor :doc include Helper def initialize(params={}) testname = params.kind_of?(Array) ? 'IfController' : (params[:name] || 'IfController') @doc = Nokogiri::XML(<<-EOS.strip_heredoc) <IfController guiclass="IfControllerPanel" testclass="IfController" testname="#{testname}" enabled="true"> <stringProp name="IfController.condition"/> <boolProp name="IfController.evaluateAll">false</boolProp> <boolProp name="IfController.useExpression">true</boolProp> </IfController>) EOS update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end end end
Version data entries
61 entries across 61 versions & 1 rubygems