Sha256: b40776e865fcdcf1d6e863dbb6b95bf290b7d355e88e3b0a8222c8d2f5d3bea0

Contents?: true

Size: 410 Bytes

Versions: 8

Compression:

Stored size: 410 Bytes

Contents

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'ruby-jmeter'

module RubyJmeter
  class ExtendedDSL < DSL
    def test_method_here
      puts "here be dragons"
    end
  end
end


test do
  threads count: 1 do
    test_fragment name: 'RegisterResponseToSentMail', enabled: 'false' do
      test_method_here
    end
  end
end.run(path: '/usr/local/share/jmeter-3.1/bin/', gui: true)

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ruby-jmeter-3.1.08 examples/real_custom_methods.rb
ruby-jmeter-3.1.07 examples/real_custom_methods.rb
ruby-jmeter-3.1.06 examples/real_custom_methods.rb
ruby-jmeter-3.1.05 examples/real_custom_methods.rb
ruby-jmeter-3.1.04 examples/real_custom_methods.rb
ruby-jmeter-3.1.03 examples/real_custom_methods.rb
ruby-jmeter-3.1.02 examples/real_custom_methods.rb
ruby-jmeter-3.1.01 examples/real_custom_methods.rb