Bottle tag tests: fix Tiger Intel 64

This commit is contained in:
Misty De Meo 2013-10-22 13:57:19 -07:00
parent 31d705d494
commit 5568f1851d

View File

@ -29,6 +29,7 @@ class BottleTagTests < Test::Unit::TestCase
def test_tag_tiger_intel_64
MacOS.stubs(:version).returns(MacOS::Version.new("10.4"))
Hardware::CPU.stubs(:type).returns(:intel)
MacOS.stubs(:prefer_64_bit?).returns(true)
assert_equal :tiger_64, bottle_tag
end