From dbe82909a30bde3e785d806fe0dad93e96c00d71 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Tue, 10 Jun 2014 21:45:10 -0500 Subject: [PATCH] Remove ABS__FILE constant from test environment --- Library/Homebrew/test/test_updater.rb | 6 +----- Library/Homebrew/test/testing_env.rb | 3 +-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/Library/Homebrew/test/test_updater.rb b/Library/Homebrew/test/test_updater.rb index 0d3cbc7fa0..85bfd61b48 100644 --- a/Library/Homebrew/test/test_updater.rb +++ b/Library/Homebrew/test/test_updater.rb @@ -38,11 +38,7 @@ class UpdaterTests < Test::Unit::TestCase end def self.fixture_data - @fixture_data ||= load_fixture_data - end - - def self.load_fixture_data - YAML.load_file(Pathname.new(ABS__FILE__).parent.realpath + 'fixtures/updater_fixture.yaml') + @fixture_data ||= YAML.load_file("#{TEST_FOLDER}/fixtures/updater_fixture.yaml") end def setup diff --git a/Library/Homebrew/test/testing_env.rb b/Library/Homebrew/test/testing_env.rb index f0bd1726df..6b6f7ba3d9 100644 --- a/Library/Homebrew/test/testing_env.rb +++ b/Library/Homebrew/test/testing_env.rb @@ -1,6 +1,5 @@ # Require this file to build a testing environment. -ABS__FILE__ = File.expand_path(__FILE__) $:.push(File.expand_path(__FILE__+'/../..')) require 'extend/module' @@ -55,7 +54,7 @@ end at_exit { HOMEBREW_PREFIX.parent.rmtree } # Test fixtures and files can be found relative to this path -TEST_FOLDER = Pathname.new(ABS__FILE__).parent.realpath +TEST_FOLDER = File.dirname(File.expand_path(__FILE__)) def shutup if ARGV.verbose?