Sha256: 4ffba628962826425cb00d50888e6b668900fd5971f24afb8f7802b69e4c5a22
Contents?: true
Size: 1.71 KB
Versions: 3
Compression:
Stored size: 1.71 KB
Contents
require File.dirname(__FILE__) + '/../../spec_helper.rb' module Spec module Runner describe "QuietBacktraceTweaker" do before(:each) do @error = RuntimeError.new @tweaker = QuietBacktraceTweaker.new end it "should not barf on nil backtrace" do lambda do @tweaker.tweak_backtrace(@error) end.should_not raise_error end it "should remove anything from textmate ruby bundle" do @error.set_backtrace(["/Applications/TextMate.app/Contents/SharedSupport/Bundles/Ruby.tmbundle/Support/tmruby.rb:147"]) @tweaker.tweak_backtrace(@error) @error.backtrace.should be_empty end it "should remove anything in lib spec dir" do ["expectations", "mocks", "runner"].each do |child| element="/lib/spec/#{child}/anything.rb" @error.set_backtrace([element]) @tweaker.tweak_backtrace(@error) unless (@error.backtrace.empty?) raise("Should have tweaked away '#{element}'") end end end it "should remove mock_frameworks/rspec" do element = "mock_frameworks/rspec" @error.set_backtrace([element]) @tweaker.tweak_backtrace(@error) unless (@error.backtrace.empty?) raise("Should have tweaked away '#{element}'") end end it "should remove bin spec" do @error.set_backtrace(["bin/spec:"]) @tweaker.tweak_backtrace(@error) @error.backtrace.should be_empty end it "should clean up double slashes" do @error.set_backtrace(["/a//b/c//d.rb"]) @tweaker.tweak_backtrace(@error) @error.backtrace.should include("/a/b/c/d.rb") end end end end
Version data entries
3 entries across 3 versions & 1 rubygems