module RubyJmeter module Plugins class JsonPathAssertion attr_accessor :doc include Helper def initialize(params={}) @doc = Nokogiri::XML(<<-EOF.strip_heredoc) true false EOF update params end end end end