summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/mini/test.rb16
1 files changed, 3 insertions, 13 deletions
diff --git a/lib/mini/test.rb b/lib/mini/test.rb
index e08d4dd93..a8a65821a 100644
--- a/lib/mini/test.rb
+++ b/lib/mini/test.rb
@@ -13,28 +13,18 @@
module Mini
class Assertion < Exception; end
- file = if __FILE__ =~ /^[^\.]/ then # OMG ruby 1.9 is so lame (rubinius too)
- require 'pathname'
- pwd = Pathname.new(Dir.pwd)
- pn = Pathname.new(File.expand_path(__FILE__))
- pn = File.join(".", pn.relative_path_from(pwd)) unless pn.relative?
- pn.to_s
- else
- __FILE__
- end
-
- MINI_DIR = File.dirname(File.dirname(file))
+ MINI_DIR = File.expand_path("../..", __FILE__)
def self.filter_backtrace bt
return ["No backtrace"] unless bt
new_bt = []
bt.each do |line|
- break if line.index(MINI_DIR) == 0
+ break if line.index(MINI_DIR, 0)
new_bt << line
end
- new_bt = bt.reject { |line| line.index(MINI_DIR) == 0 } if
+ new_bt = bt.reject { |line| line.index(MINI_DIR, 0) } if
new_bt.empty?
new_bt = bt.dup if new_bt.empty?