aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_bottles.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/test/test_bottles.rb')
-rw-r--r--Library/Homebrew/test/test_bottles.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/Library/Homebrew/test/test_bottles.rb b/Library/Homebrew/test/test_bottles.rb
deleted file mode 100644
index 5c18cc681..000000000
--- a/Library/Homebrew/test/test_bottles.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-require 'testing_env'
-require 'test/testball'
-
-class BottleTests < Test::Unit::TestCase
- def test_bottle_spec_selection
- f = SnowLeopardBottleSpecTestBall.new
-
- assert_equal case MacOS.cat
- when :snow_leopard then f.bottle
- else f.stable
- end, f.active_spec
-
- f = LionBottleSpecTestBall.new
- assert_equal case MacOS.cat
- when :lion then f.bottle
- else f.stable
- end, f.active_spec
-
- f = AllCatsBottleSpecTestBall.new
- assert_equal f.bottle, f.active_spec
- end
-end