Sha256: c2b1103633120ef2af971f63bbee97697dc871722157c9faf7bb6b31f19d95de

Contents?: true

Size: 481 Bytes

Versions: 4

Compression:

Stored size: 481 Bytes

Contents

require 'toadhopper'

module Toadhopper
module Test
# Helper methods for testing Toadhopper posting
module Methods
  # Stub the posting of the error, storing the post params for accessing via
  # last_toadhopper_post_params
  def stub_toadhopper_post!
    def Toadhopper.post!(*args)
      Toadhopper.instance_variable_set(:@last_post_arguments, args)
    end
  end
  def last_toadhopper_post_arguments
    Toadhopper.instance_variable_get(:@last_post_arguments)
  end
end
end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
toolmantim-toadhopper-0.4 lib/toadhopper/test/methods.rb
toolmantim-toadhopper-0.5 lib/toadhopper/test/methods.rb
toadhopper-0.5 lib/toadhopper/test/methods.rb
toadhopper-0.4 lib/toadhopper/test/methods.rb