aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-06-12 18:14:48 -0500
committerJack Nagel2014-06-12 18:14:48 -0500
commitfc1ed8ebdf972d944a5dd2c42965ec19282fc739 (patch)
tree496c20558f3e5690dd3d8b2afd3918e50fce5ee3 /Library
parentcbc7c07540db5d765eb24a3263271820646e9552 (diff)
downloadhomebrew-fc1ed8ebdf972d944a5dd2c42965ec19282fc739.tar.bz2
Always expand __FILE__
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/test/test_formula.rb2
-rw-r--r--Library/Homebrew/test/test_formula_install.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/test/test_formula.rb b/Library/Homebrew/test/test_formula.rb
index 80980173c..2b6e356d2 100644
--- a/Library/Homebrew/test/test_formula.rb
+++ b/Library/Homebrew/test/test_formula.rb
@@ -170,7 +170,7 @@ class FormulaTests < Test::Unit::TestCase
bottle { sha1 TEST_SHA1 => bottle_tag }
def initialize
- super "test", Pathname.new(__FILE__)
+ super "test", Pathname.new(__FILE__).expand_path
end
end.new
diff --git a/Library/Homebrew/test/test_formula_install.rb b/Library/Homebrew/test/test_formula_install.rb
index 8ce9e1ae1..cc42bff61 100644
--- a/Library/Homebrew/test/test_formula_install.rb
+++ b/Library/Homebrew/test/test_formula_install.rb
@@ -56,10 +56,10 @@ class InstallTests < Test::Unit::TestCase
def test_script_install
f = Class.new(ScriptFileFormula) do
- url "file://#{__FILE__}"
+ url "file://#{File.expand_path(__FILE__)}"
version "1"
def initialize
- super "test_script_formula", Pathname.new(__FILE__)
+ super "test_script_formula", Pathname.new(__FILE__).expand_path
end
end.new