Sha256: 6b0d62b2b62b98b354e86cf707cc44f81d26846a85fe143e986a1edc2e0f20c6
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
require 'spec_helper' describe 'CrashHook::Middleware' do before do @env = Rack::MockRequest.env_for("/") end it 'does nothing if no errors occurred' do result = build_stack.call(@env) result.status.should == 200 end it 'sends notification to the url on exception' do FakeWeb.register_uri(:post, "http://localhost:4567/exception", :body => fixture('stack.txt')) proc { build_stack(raise_endpoint(ArgumentError, "missing something")).call(@env) }. should raise_error ArgumentError, "missing something" end it 'sends notification in json format' do proc { build_stack(raise_endpoint(ArgumentError, "missing something")).call(@env) }. should raise_error ArgumentError, "missing something" end it 'does not produce any errors on invalid http endpoint' do FakeWeb.register_uri(:post, "http://localhost:4567/exception", :body => fixture('stack.txt'), :status => ["404", "Not Found"]) proc { build_stack(raise_endpoint(ArgumentError, "missing something")).call(@env) }. should raise_error ArgumentError, "missing something" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
crash_hook-0.2.0 | spec/middleware_spec.rb |