Sha256: a785de51895acebb54b42102a4248c385d51593eaa3124eff7729472ea1325f0
Contents?: true
Size: 946 Bytes
Versions: 31
Compression:
Stored size: 946 Bytes
Contents
require File.expand_path '../helper', __FILE__ class UserInformerTest < Test::Unit::TestCase should "modify output if there is an airbrake id" do main_app = lambda do |env| env['airbrake.error_id'] = 1 [200, {}, ["<!-- AIRBRAKE ERROR -->"]] end informer_app = Airbrake::UserInformer.new(main_app) ShamRack.mount(informer_app, "example.com") response = Net::HTTP.get_response(URI.parse("http://example.com/")) assert_equal "Airbrake Error 1", response.body assert_equal 16, response["Content-Length"].to_i end should "not modify output if there is no airbrake id" do main_app = lambda do |env| [200, {}, ["<!-- AIRBRAKE ERROR -->"]] end informer_app = Airbrake::UserInformer.new(main_app) ShamRack.mount(informer_app, "example.com") response = Net::HTTP.get_response(URI.parse("http://example.com/")) assert_equal "<!-- AIRBRAKE ERROR -->", response.body end end
Version data entries
31 entries across 31 versions & 2 rubygems